Initial commit
This commit is contained in:
35
resources/views/emails/finance/approved-by-cashier.blade.php
Normal file
35
resources/views/emails/finance/approved-by-cashier.blade.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<x-mail::message>
|
||||
# Finance Document Awaiting Accountant Review
|
||||
|
||||
A finance document has been approved by the cashier and is now awaiting your review as accountant.
|
||||
|
||||
**Document Details:**
|
||||
- **Title:** {{ $document->title }}
|
||||
- **Amount:** KES {{ number_format($document->amount, 2) }}
|
||||
- **Type:** {{ ucfirst(str_replace('_', ' ', $document->type)) }}
|
||||
- **Submitted by:** {{ $document->submittedBy->name }}
|
||||
@if($document->member)
|
||||
- **Member:** {{ $document->member->full_name }}
|
||||
@endif
|
||||
|
||||
**Approval History:**
|
||||
- **Cashier:** {{ $document->cashierApprover->name }} ({{ $document->cashier_approved_at->format('M d, Y H:i') }})
|
||||
|
||||
@if($document->description)
|
||||
**Description:**
|
||||
{{ $document->description }}
|
||||
@endif
|
||||
|
||||
@if($document->attachment_path)
|
||||
This document includes an attachment for review.
|
||||
@endif
|
||||
|
||||
<x-mail::button :url="route('finance.show', $document)">
|
||||
Review Document
|
||||
</x-mail::button>
|
||||
|
||||
Please review and approve or reject this document at your earliest convenience.
|
||||
|
||||
Thanks,<br>
|
||||
{{ config('app.name') }}
|
||||
</x-mail::message>
|
||||
Reference in New Issue
Block a user