ok

Mini Shell

Direktori : /home2/selectio/www/fms-worksuite/app/Mail/
Upload File :
Current File : //home2/selectio/www/fms-worksuite/app/Mail/BulkShiftEmail.php

<?php

namespace App\Mail;

use App\Models\EmployeeShiftSchedule;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

class BulkShiftEmail extends Mailable implements ShouldQueue
{

    use Queueable, SerializesModels;

    public $dateRange;
    public $userId;

    /**
     * Create a new message instance.
     *
     * @return void
     */
    public function __construct($dateRange, $userId)
    {
        $this->dateRange = $dateRange;
        $this->userId = $userId;
    }

    /**
     * Build the message.
     *
     * @return $this
     */
    public function build()
    {
        $employeeShifts = EmployeeShiftSchedule::with('shift')
            ->whereIn('date', $this->dateRange)
            ->where('user_id', $this->userId)
            ->get();

        return $this->subject(__('email.shiftScheduled.subject'))
            ->markdown('mail.bulk-shift-email', [
                'employeeShifts' => $employeeShifts
            ]);
    }

}

Zerion Mini Shell 1.0