@component('mail::layout') @slot('header') @component('mail::header', ['url' => config('app.url')]) {{ config('app.name') }} @endcomponent @endslot # New Installment Request **Car:** {{ $installment->car->title }} **Price:** {{ $installment->car->installment_price }} **Monthly Payment:** {{ $installment->car->installment_monthly }} **Duration:** {{ $installment->car->installment_duration_months }} months **Customer Details:** - Name: {{ $installment->full_name }} - Mobile: {{ $installment->mobile }} @if ($installment->phone) - Phone: {{ $installment->phone }} @endif - Address: {{ $installment->address }} - Employment: {{ ucfirst($installment->employment_status->value) }} @if ($installment->company_name) - Company: {{ $installment->company_name }} @endif - Monthly Income: {{ $installment->monthly_income }} {{-- @component('mail::button', ['url' => route('admin.installments.show', $installment->id)]) View Full Details @endcomponent --}} @slot('footer') @component('mail::footer') © {{ date('Y') }} {{ config('app.name') }}. All rights reserved. @endcomponent @endslot @endcomponent