40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Jobs\Banking;
 | |
| 
 | |
| use App\Abstracts\Job;
 | |
| use App\Events\Banking\TransactionCreated;
 | |
| use App\Events\Banking\TransactionCreating;
 | |
| use App\Interfaces\Job\HasOwner;
 | |
| use App\Interfaces\Job\HasSource;
 | |
| use App\Interfaces\Job\ShouldCreate;
 | |
| use App\Models\Banking\Transaction;
 | |
| 
 | |
| class CreateTransaction extends Job implements HasOwner, HasSource, ShouldCreate
 | |
| {
 | |
|     public function handle(): Transaction
 | |
|     {
 | |
|         event(new TransactionCreating($this->request));
 | |
| 
 | |
|         \DB::transaction(function () {
 | |
|             $this->model = Transaction::create($this->request->all());
 | |
| 
 | |
|             // Upload attachment
 | |
|             if ($this->request->file('attachment')) {
 | |
|                 foreach ($this->request->file('attachment') as $attachment) {
 | |
|                     $media = $this->getMedia($attachment, 'transactions');
 | |
| 
 | |
|                     $this->model->attachMedia($media, 'attachment');
 | |
|                 }
 | |
|             }
 | |
| 
 | |
|             // Recurring
 | |
|             $this->model->createRecurring($this->request->all());
 | |
|         });
 | |
| 
 | |
|         event(new TransactionCreated($this->model));
 | |
| 
 | |
|         return $this->model;
 | |
|     }
 | |
| }
 |