Skip to content

Instantly share code, notes, and snippets.

@victorsteven
Created April 15, 2019 19:45
Show Gist options
  • Select an option

  • Save victorsteven/03daa27a29878b526397a9490f03925f to your computer and use it in GitHub Desktop.

Select an option

Save victorsteven/03daa27a29878b526397a9490f03925f to your computer and use it in GitHub Desktop.
newarrivals emails file
@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
Wonderful Company
@endcomponent
@endslot
Dear {{$user->name}}
<h2>{{ $new_arrival->title }}</h2>
<p>{{ $new_arrival->body }}</p>
click on the link below to see more
@component('mail::button', ['url' => url('/')])
View Arrival
@endcomponent
Regards,<br>
Wonderful Company Support Team
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
<!-- footer here -->
@endcomponent
@endslot
@endcomponent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment