mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:37:34 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			444 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			444 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Events;
 | 
						|
 | 
						|
use App\Models\Expense;
 | 
						|
use Illuminate\Queue\SerializesModels;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class ExpenseWasCreated.
 | 
						|
 */
 | 
						|
class ExpenseWasCreated extends Event
 | 
						|
{
 | 
						|
    use SerializesModels;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Expense
 | 
						|
     */
 | 
						|
    public $expense;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new event instance.
 | 
						|
     *
 | 
						|
     * @param Expense $expense
 | 
						|
     */
 | 
						|
    public function __construct(Expense $expense)
 | 
						|
    {
 | 
						|
        $this->expense = $expense;
 | 
						|
    }
 | 
						|
}
 |