File: /home/imensosw/www/mpl.imenso.co/app/Events/RadioShowUpdated.php
<?php
namespace App\Events;
use App\Models\RadioShow as RadioShow;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class RadioShowUpdated
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $new_show;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(RadioShow $new_show)
{
$this->new_show = $new_show;
}
}