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

1 month ago
  1. {{--$notice collection is available here--}}
  2. @component('mail::message')
  3. # Title:
  4. {{$notice->notice}}
  5. # Description:
  6. {{$notice->description ?? ''}}
  7. <br>
  8. @if ($action == 'create' )
  9. Notice Created By {{$notice->creator->name ?? ''}}
  10. @elseif($action == 'update')
  11. Notice Updated By {{$notice->creator->name ?? ''}}
  12. @else
  13. Notice deleted By {{$notice->creator->name ?? ''}}
  14. @endif
  15. Untill {{ date('h:i:s a',strtotime($notice->expired_at)) }} {{ date('d F, Y',strtotime($notice->expired_at)) }}
  16. Thanks,<br>
  17. {{ config('app.name') }}
  18. @endcomponent