@include('emails.client_contact.common-finance.header', ['franchise' => $franchise]) @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') Hello Team {{ $project->name }}, @endcomponent @component('emails.common.p') The following Job Card(s) have been associated with the following new project: @endcomponent @component('emails.common.p_with_ul') @slot('p') Associated Job Card(s): @endslot @slot('ul') @foreach ($project->jobs as $job)
  • {{ $job->title }}
  • @endforeach @endslot @endcomponent @component('emails.common.table') Project Summary: Project Code: {{ $project->project_code }} Project Type: {{ ucfirst($project->type) }} @if($project->type == 'external') Business Service: {{ $project->services_formatted }} @else Project Classification: {{ $project->classifications_formatted }} @endif Project Status: {{ ucwords(str_replace('_',' ', $project->status)) }} @if($project->type == 'external') Company: {{ $project->contact_companies_formatted }} @endif Project Owner: {{ $project->projectOwner->first()->full_name ?? '' }} Deadline: {{date('d M Y', strtotime($project->completion_date)) }} @endcomponent @component('emails.common.p') Click here to view project 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])