ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/InvoiceReminderEvent.php

<?php

namespace App\Events;

use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;

class InvoiceReminderEvent
{

    use Dispatchable, InteractsWithSockets, SerializesModels;

    public $notifyUser;
    public $invoice;
    public $invoice_setting;

    public function __construct($invoice, $notifyUser, $invoice_setting)
    {
        $this->invoice = $invoice;
        $this->notifyUser = $notifyUser;
        $this->invoice_setting = $invoice_setting;
    }

}

Zerion Mini Shell 1.0