All checks were successful
ERP-Deploy-Demo / deploy-demo (push) Successful in 56s
23 lines
765 B
PHP
23 lines
765 B
PHP
<x-mail::message>
|
|
# 公共事業費繳費提醒
|
|
|
|
您好,系統偵測到有公共事業費單據處於 **未完成繳費** 或 **已逾期** 狀態,請儘速處理。
|
|
|
|
以下為待處理清單:
|
|
|
|
<x-mail::table>
|
|
| 費用類別 | 金額 | 繳費期限 | 目前狀態 |
|
|
| :--- | :--- | :--- | :--- |
|
|
@foreach($fees as $fee)
|
|
| {{ $fee->category }} | {{ number_format($fee->amount, 2) }} | {{ $fee->due_date ? $fee->due_date->format('Y-m-d') : '未設定' }} | {{ $fee->payment_status === 'overdue' ? '🔴 已逾期' : '🟡 待繳納' }} |
|
|
@endforeach
|
|
</x-mail::table>
|
|
|
|
<x-mail::button :url="config('app.url') . '/utility-fees'">
|
|
前往系統查看詳情
|
|
</x-mail::button>
|
|
|
|
感謝您的配合,<br>
|
|
{{ config('app.name') }} 系統管理團隊
|
|
</x-mail::message>
|