Created
April 15, 2019 19:45
-
-
Save victorsteven/03daa27a29878b526397a9490f03925f to your computer and use it in GitHub Desktop.
newarrivals emails file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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