Files
nnterp-react-admin/app/Events/DestroySalesProposal.php
2026-03-13 20:49:46 +08:00

16 lines
250 B
PHP

<?php
namespace App\Events;
use App\Models\SalesProposal;
use Illuminate\Foundation\Events\Dispatchable;
class DestroySalesProposal
{
use Dispatchable;
public function __construct(
public SalesProposal $salesProposal,
) {}
}