@extends('emails.templates.default') @section('content')

{{ __('email.greeting', ['name' => trim($name)!='' ? $name : 'there']) }}

{{ __('email.unit_enrolled.message', [ 'unit_name' => $unit_name', 'course_name' => $course_name ]) }}

{{ __('email.unit_enrolled.end_line') }}

{{ __('email.unit_enrolled.happy_learning') }}

@include('emails.templates.signoff', ['thank_you' => __('email.thank_you'), 'wish' => __('email.wish')])
@endsection