mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-01 13:40:46 +00:00
9 lines
528 B
PHP
Executable File
9 lines
528 B
PHP
Executable File
<p>{{ $user->nickname }} 您好:</p>
|
|
@if ($type === 'before')
|
|
<p>您有一个任务【{{ $task->name }}】{{ $setting['task_remind_hours'] > 0 ? "还有{$setting['task_remind_hours']}小时即将超时" : "已超时" }},请及时处理。</p>
|
|
@elseif ($type === 'after')
|
|
<p>您的任务【{{ $task->name }}】已经超时{{ $setting['task_remind_hours2'] > 0 ? "{$setting['task_remind_hours2']}小时" : "" }},请及时处理。</p>
|
|
@else
|
|
<p>您有一个新任务【{{ $task->name }}】已开始。</p>
|
|
@endif
|