@include('emails.client_contact.common-finance.header', ['franchise' => $franchise])
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{ $taggedUser->first_name ?? '' }},
@endcomponent
@component('emails.common.p')
{{ $taskComment->owner->full_name ?? '' }} has tagged you in a comment.
@endcomponent
@component('emails.common.p')
@if(strlen(strip_tags($taskComment->manual_comment_formatted)) >= 50)
They said “{!! substr(strip_tags($taskComment->manual_comment_formatted), 0, 50) !!}...”.
@else
They said “{!! substr(strip_tags($taskComment->manual_comment_formatted), 0, 50) !!}”.
@endif
@endcomponent
@component('emails.common.table')
Task Details
|
Task Name:
|
{{ $taskComment->task->title ?? '' }}
|
Project:
|
{{ $taskComment->task->project->name ?? '' }}
|
Deadline:
|
{{ date(config('custom.formats.mail_date_time'), strtotime($taskComment->task->latestAssignee->end_date_time)) }}
|
@endcomponent
@component('emails.common.p')
Click here to view the the comment
@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])