You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
540 B
20 lines
540 B
{{--$notice collection is available here--}}
|
|
|
|
@component('mail::message')
|
|
# Title:
|
|
{{$notice->notice}}
|
|
# Description:
|
|
{{$notice->description ?? ''}}
|
|
<br>
|
|
@if ($action == 'create' )
|
|
Notice Created By {{$notice->creator->name ?? ''}}
|
|
@elseif($action == 'update')
|
|
Notice Updated By {{$notice->creator->name ?? ''}}
|
|
@else
|
|
Notice deleted By {{$notice->creator->name ?? ''}}
|
|
@endif
|
|
Untill {{ date('h:i:s a',strtotime($notice->expired_at)) }} {{ date('d F, Y',strtotime($notice->expired_at)) }}
|
|
|
|
Thanks,<br>
|
|
{{ config('app.name') }}
|
|
@endcomponent
|