@include('emails.client_contact.common-finance.header', ['franchise' => $franchise]) @component('emails.common.table', ['wordWrap' => true]) @component('emails.common.td') @component('emails.common.p') Hello {{ $userName }}, @endcomponent @component('emails.common.p') It's been quite a month, let’s see what we have achieved! @endcomponent

Projects

@if(count($ongoingProjects) > 0) @foreach ($ongoingProjects as $project) @if(count($project->contacts) > 0) @else @endif @endforeach
Ongoing Projects
Project Client Deadline Task Completion Rate Budget Income Expenses
{{ $project->name }}{{ $project->contact_companies_formatted }}Internal{{ date(config('custom.formats.sort_date'), strtotime($project->completion_date)) }} {{ ($project->task_completion_rate) ? $project->task_completion_rate . '%' : '-' }} {{ $franchiseCurrency }} {{ number_format($project->expected_budget, 2) }} {{ $franchiseCurrency }} {{ number_format($project->income, 2) }} {{ $franchiseCurrency }} {{ number_format($project->expenses, 2) }}
@endif @if(count($pipelineProjects) > 0) @foreach ($pipelineProjects as $project) @if(count($project->contacts) > 0) @else @endif @endforeach
Pipeline Projects
Project Dept Client Deadline Task Completion Rate Expected Budget Expected Revenue
{{ $project->name }} {{ $project->departments_formatted }}{{ $project->contact_companies_formatted }}Internal{{ date(config('custom.formats.sort_date'), strtotime($project->completion_date)) }} {{ ($project->task_completion_rate) ? $project->task_completion_rate . '%' : '-' }} {{ $franchiseCurrency }} {{ number_format($project->expected_budget, 2) }} {{ $franchiseCurrency }} {{ number_format($project->expected_revenue, 2) }}
@endif @if(count($closedProjects) > 0) @foreach ($closedProjects as $project) @if(count($project->contacts) > 0) @else @endif @endforeach
Closed Projects
Project Client Budget Income Expenses OAS
{{ $project->name }}{{ $project->contact_companies_formatted }}Internal{{ $franchiseCurrency }} {{ number_format($project->expected_budget, 2) }} {{ $franchiseCurrency }} {{ number_format($project->income, 2) }} {{ $franchiseCurrency }} {{ number_format($project->expenses, 2) }} {{ $project->oas }}
@endif @if(count($cancelledProjects) > 0) @foreach ($cancelledProjects as $project) @if(count($project->contacts) > 0) @else @endif @endforeach
Cancelled/On Hold Projects
Project Client Status
{{ $project->name }}{{ $project->contact_companies_formatted }}Internal{{ ucwords(str_replace('_', ' ', $project->status)) }}
@endif
Performance
Overall Individual OAS for this month {{ $individualOAS }}/{{ $avgOAS }}
Client Feedback Implementation Feedback Leadership Feedback Task Feedback
{{ ($clientFeedbackOAS && $clientFeedbackOAS > 0) ? number_format($clientFeedbackOAS, 2) : '-' }} {{ ($implementationFeedbackOAS && $implementationFeedbackOAS > 0) ? number_format($implementationFeedbackOAS, 2) : '-' }} {{ ($leadershipFeedbackOAS && $leadershipFeedbackOAS > 0) ? number_format($leadershipFeedbackOAS, 2) : '-' }} {{ ($taskFeedbackOAS && $taskFeedbackOAS > 0) ? number_format($taskFeedbackOAS, 2) : '-' }}
Pesa
Total Revenue Generated Pipeline Revenue Total Commission Earned Total Commission Paid
{{ $franchiseCurrency }} {{ number_format($totalRevenueGenerated, 2) }} {{ $franchiseCurrency }} {{ number_format($totalPipelineRevenue, 2) }} {{ $franchiseCurrency }} {{ number_format($totalCommissionPaid, 2) }} {{ $franchiseCurrency }} {{ number_format($totalCommissionEarned, 2) }}
@component('emails.common.p') Click here to view more information. @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])