mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-24 04:14:57 +00:00
Bruno Fontes
63ef369e16
Now the main page, item page and e-mails are translated into Brazilian Portuguese
43 lines
847 B
PHP
43 lines
847 B
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use \App\Item;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
class ItemAvailable extends Mailable
|
|
{
|
|
public $item;
|
|
public $username;
|
|
use Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($username, Item $item)
|
|
{
|
|
$this->item = $item;
|
|
$this->username = $username;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
return $this->subject(
|
|
\Lang::getFromJson(
|
|
':itemname is available!',
|
|
['itemname' => $this->item->name]
|
|
)
|
|
)->markdown('emails.itemAvailable');
|
|
}
|
|
}
|