shareit/resources/views/emails/itemAvailable.blade.php

18 lines
527 B
PHP
Raw Normal View History

2018-09-15 05:09:07 +00:00
@component('mail::message')
{!! __('Hi, :username,', ['username' => $username]) !!}
#{!! __('Good news: :itemname is available!', ['itemname' => $item->name]) !!}
{!! __('The item <em>:itemname (:productname)</em> is now available on **Share&nbsp;It**.', ['itemname' => $item->name, 'productname' => $item->product->name]) !!}
{!! __('**Take It** before anyone else at the website:') !!}
2018-09-15 05:09:07 +00:00
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
{{ config('app.name') }}
2018-09-15 05:09:07 +00:00
@endcomponent
@endcomponent