@include('emails.common.header') @component('emails.common.table') @component('emails.common.td') @component('emails.common.p') Hello {{ $user->first_name }}, @endcomponent @component('emails.common.p_with_ul') @slot('p') Reminder Details: @endslot @slot('ul')
  • Title: {{ $reminder->title }}
  • Date: {{ date('d M Y', strtotime($reminder->date)) }}
  • Time: {{ date('H:i', strtotime($reminder->time)) }}
  • Description: {{ $reminder->description }}
  • @endslot @endcomponent @endcomponent @component('emails.common.td') @component('emails.common.secondary_footer') @endcomponent @endcomponent @endcomponent @include('emails.common.footer')