added transaction delete events
This commit is contained in:
		
							
								
								
									
										20
									
								
								app/Events/Banking/TransactionDeleting.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								app/Events/Banking/TransactionDeleting.php
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,20 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Events\Banking;
 | 
			
		||||
 | 
			
		||||
use App\Abstracts\Event;
 | 
			
		||||
 | 
			
		||||
class TransactionDeleting extends Event
 | 
			
		||||
{
 | 
			
		||||
    public $transaction;
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Create a new event instance.
 | 
			
		||||
     *
 | 
			
		||||
     * @param $transaction
 | 
			
		||||
     */
 | 
			
		||||
    public function __construct($transaction)
 | 
			
		||||
    {
 | 
			
		||||
        $this->transaction = $transaction;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user