23 lines
307 B
PHP
23 lines
307 B
PHP
<?php
|
|
|
|
namespace App\Events\Purchase;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class BillReminded
|
|
{
|
|
use SerializesModels;
|
|
|
|
public $bill;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param $bill
|
|
*/
|
|
public function __construct($bill)
|
|
{
|
|
$this->bill = $bill;
|
|
}
|
|
}
|