File "StatusUpdatedEmail.php"

Full Path: /home/bettaeza/flyinsyria.com/Booking/Emails/StatusUpdatedEmail.php
File size: 1.21 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Modules\Booking\Emails;

use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
use Modules\Booking\Models\Booking;

class StatusUpdatedEmail extends Mailable
{
    use Queueable, SerializesModels;
    public $booking;
    public $oldStatus;
    protected $email_type;

    public function __construct(Booking $booking,$to = 'admin')
    {
        $this->booking = $booking;
        $this->email_type = $to;
    }

    public function build()
    {
        $subject = '';
        switch ($this->email_type){
            case "admin":
            case "vendor":
                $subject = __('[:site_name] The booking status has been updated',['site_name'=>setting_item('site_title')]);
                break;

            case "customer":
                $subject = __('Your booking status has been updated',['site_name'=>setting_item('site_title')]);
                break;

        }

        return $this->subject($subject)->view('Booking::emails.status-updated-booking')->with([
            'booking'   => $this->booking,
            'service'   => $this->booking->service,
            'to'=>$this->email_type
        ]);
    }
}