17 lines
276 B
PHP
17 lines
276 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\PurchaseInvoice;
|
|
use App\Models\PurchaseReturn;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class DestroyPurchaseReturn
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public PurchaseReturn $return
|
|
) {}
|
|
}
|