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