mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-28 08:51:06 -03:00 
			
		
		
		
	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');
 | |
|     }
 | |
| }
 |