33 lines
852 B
PHP
33 lines
852 B
PHP
<x-mail::message>
|
|
# New Finance Document Awaiting Review
|
|
|
|
A new finance document has been submitted and is awaiting cashier review.
|
|
|
|
**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
|
|
|
|
@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>
|