16 lines
250 B
PHP
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,
|
|
) {}
|
|
}
|