19 lines
648 B
PHP
19 lines
648 B
PHP
<p>Dear {{ $approver->name }},</p>
|
|
|
|
<p>A travel request has been submitted and requires your approval.</p>
|
|
|
|
<p>
|
|
<strong>Request #:</strong> {{ $travelRequest->id }}<br>
|
|
<strong>Submitted by:</strong> {{ $travelRequest->user->name }} ({{ $travelRequest->user->email }})<br>
|
|
<strong>Reason:</strong> {{ $travelRequest->reason_summary }}<br>
|
|
<strong>Submitted:</strong> {{ $travelRequest->submitted_at?->format('d M Y H:i') }}
|
|
</p>
|
|
|
|
<p>
|
|
<a href="{{ $signedUrl }}">Click here to review and approve or reject this request</a>
|
|
</p>
|
|
|
|
<p>This link is signed and will expire. Please action it promptly.</p>
|
|
|
|
<p>Travel Request System</p>
|