@include('emails.client_contact.common-finance.header', ['franchise' => $franchise]) @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') Hello {{ $requestedBy->first_name ?? '' }}, @endcomponent @component('emails.common.p') The following master deadline extension request of task has been @if($isApproved) Approved. @else Rejected. @endif @endcomponent @component('emails.common.table', ['fullWidth' => true]) Project: {{ $comment->task->project->name }} Task Name: {{ $comment->task->title }} {{-- @if (!$isApproved) Reason: {!! strip_tags($comment->manual_comment_formatted) ?? '' !!} @endif --}} @endcomponent @if ($isApproved) @component('emails.common.p') Please see the updated deadlines as below: @endcomponent @foreach ($comment->approvedDeadlineExtensions as $key => $deadline) @endforeach
Assignee Older Deadline New Deadline
{{ $deadline->assignee->user->full_name }} {{ $deadline->old_deadline_date }} {{ $deadline->new_deadline_date }}
@else @component('emails.common.p') Please see the current deadlines as below @endcomponent @foreach ($comment->approvedDeadlineExtensions as $key => $deadline) @endforeach
Assignee Deadline
{{ $deadline->assignee->user->full_name }} {{ $deadline->old_deadline_date }}
@endif @component('emails.common.p') Click here to view task details @endcomponent @component('emails.common.slogan') @endcomponent @endcomponent @component('emails.common.td') @component('emails.common.p') @if($franchise) {{ $franchise->company_name }}@endif Project @endcomponent @endcomponent @endcomponent @include('emails.client_contact.common-finance.footer', ['franchise' => $franchise])