@include('emails.client_contact.common-finance.header', ['franchise' => $franchise])
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
Hello {{ $user->first_name }},
@endcomponent
@component('emails.common.p')
You have been added to {{ $project->name }} as {{ ucwords(str_replace('_',' ', $role)) }}.
@endcomponent
@if(count($project->jobs) > 0)
@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
@endif
@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 the 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])