| 1234567891011121314151617181920212223 | <?php
namespace App\Events;
use App\Models\Setting\Currency;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class DefaultCurrencyChanged
{
    use Dispatchable, InteractsWithSockets, SerializesModels;
    public Currency $currency;
    /**
     * Create a new event instance.
     */
    public function __construct(Currency $currency)
    {
        $this->currency = $currency;
    }
}
 |