shareit/resources/views/emails/userWaiting.blade.php
Bruno Fontes f6ab437889
Added PTB Translation of emails and some pages
Now the main page, item page and e-mails are translated
into Brazilian Portuguese
2018-09-27 20:13:14 -03:00

20 lines
559 B
PHP

@component('mail::message')
{!! __('Hi, :username,', ['username' => $userWithItem]) !!}
{!! __('Are you still using :itemname?', ['itemname' => $item->name]) !!}
{!! __('We just want to let you know that :waitinguser asked us to be alerted when this item were available.', ['waitinguser' => $waitingUser]) !!}
{!! __('So, if you are not using it anymore, please **Return It** at the website:') !!}
@component('mail::button', ['url' => 'https://shareit.brunofontes.net/home'])
Share It!
@endcomponent
Thanks,<br>
{{ config('app.name') }}
@endcomponent