@include('emails.client_contact.common-finance.header', ['franchise' => $franchise])
@component('emails.common.table')
@component('emails.common.td')
@component('emails.common.p')
@if($isReminder)
Hello {{ $reminderUser->first_name }}
@else
Hello Team,
@endif
@endcomponent
@component('emails.common.p')
The following project commission distribution pool has been allocated to Project members
@endcomponent
@component('emails.common.p')
Project: {{ $projectName }}
@endcomponent
@component('emails.common.table_with_border')
@component('emails.common.tr')
Team Member |
% Commission distribution |
@endcomponent
@foreach ($allocations as $allocation)
@component('emails.common.tr')
{{ $allocation->user->full_name }} |
{{ (float)$allocation->commission }} |
@endcomponent
@endforeach
@endcomponent
@component('emails.common.p')
Click here to view your approvals and requests.
@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])