ok
Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/ |
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/NewExpenseEvent.php |
<?php namespace App\Events; use App\Models\Expense; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; class NewExpenseEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $expense; public $status; public function __construct(Expense $expense, $status) { $this->expense = $expense; $this->status = $status; } }