whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Events
/
Statement
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/app/Events/Statement/StatementWasEmailed.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Events\Statement; use App\Models\Client; use App\Models\Company; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; /** * Class StatementWasEmailed. */ class StatementWasEmailed { use Dispatchable; use InteractsWithSockets; use SerializesModels; public function __construct(public Client $client, public Company $company, public string $end_date, public array $event_vars) { } // /** // * Get the channels the event should broadcast on. // * // * @return Channel|array // */ public function broadcastOn() { return []; } }
Copyright ©2021 || Defacer Indonesia