45 lines
		
	
	
		
			933 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			933 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Jobs\Setting;
 | |
| 
 | |
| use App\Abstracts\Job;
 | |
| use App\Models\Setting\Currency;
 | |
| 
 | |
| class CreateCurrency extends Job
 | |
| {
 | |
|     protected $request;
 | |
| 
 | |
|     /**
 | |
|      * Create a new job instance.
 | |
|      *
 | |
|      * @param  $request
 | |
|      */
 | |
|     public function __construct($request)
 | |
|     {
 | |
|         $this->request = $this->getRequestInstance($request);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the job.
 | |
|      *
 | |
|      * @return Currency
 | |
|      */
 | |
|     public function handle()
 | |
|     {
 | |
|         // Force the rate to be 1 for default currency
 | |
|         if ($this->request->get('default_currency')) {
 | |
|             $this->request['rate'] = '1';
 | |
|         }
 | |
| 
 | |
|         $currency = Currency::create($this->request->all());
 | |
| 
 | |
|         // Update default currency setting
 | |
|         if ($this->request->get('default_currency')) {
 | |
|             setting()->set('default.currency', $this->request->get('code'));
 | |
|             setting()->save();
 | |
|         }
 | |
| 
 | |
|         return $currency;
 | |
|     }
 | |
| }
 |