@include('emails.client_contact.common-finance.header', ['franchise' => $franchise]) @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') Hello {{ $budgetRequest->owner->first_name }}, @endcomponent @component('emails.common.p') Your project budget request for the following project has been {{ ucfirst($budgetRequest->status) }}. @endcomponent @component('emails.common.table') Project: {{ $budgetRequest->project->name }} Budget Type: @if($budgetRequest->budget_type == 'cash') Cash @elseif($budgetRequest->budget_type == 'stock_item') Stock Items @else Goods/Service @endif Submitted by: {{ $budgetRequest->owner->full_name }} Budgeting Category: {{ $budgetRequest->budget_category_formatted }} Fullfill by Date: {{date('d M Y', strtotime($budgetRequest->due_date)) }} Approver: {{ $budgetRequest->respondedByUser->full_name }} @if($budgetRequest->budget_type == 'stock_item') Notes: {!! $budgetRequest->description !!} @endif @endcomponent @component('emails.common.p') Total: {{ $franchiseCurrency }} {{ number_format($budgetRequest->total_amount, 2) }} @endcomponent @component('emails.common.p') Click here to view the budget request @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])