16 lines
256 B
PHP
16 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\PurchaseInvoice;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
class DestroyPurchaseInvoice
|
|
{
|
|
use Dispatchable;
|
|
|
|
public function __construct(
|
|
public PurchaseInvoice $purchaseInvoice
|
|
) {}
|
|
}
|