海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
482 B

<?php
namespace App\Events;
use App\Models\Supplier;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class DepositUpdate
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $supplier;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Supplier $supplier)
{
$this->supplier = $supplier;
}
}