47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Requests\Common;
 | |
| 
 | |
| use Illuminate\Foundation\Http\FormRequest;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| class Company extends FormRequest
 | |
| {
 | |
|     /**
 | |
|      * Get the validation rules that apply to the request.
 | |
|      *
 | |
|      * @return array
 | |
|      */
 | |
|     public function rules()
 | |
|     {
 | |
|         $logo = 'nullable';
 | |
| 
 | |
|         if ($this->files->get('logo')) {
 | |
|             $logo = 'mimes:' . config('filesystems.mimes')
 | |
|                     . '|between:0,' . config('filesystems.max_size') * 1024
 | |
|                     . '|dimensions:max_width=' . config('filesystems.max_width') . ',max_height=' . config('filesystems.max_height');
 | |
|         }
 | |
| 
 | |
|         return [
 | |
|             'name'      => 'required|string',
 | |
|             'email'     => 'required|email:rfc,dns',
 | |
|             'currency'  => 'required|string',
 | |
|             'domain'    => 'nullable|string',
 | |
|             'logo'      => $logo,
 | |
|         ];
 | |
|     }
 | |
| 
 | |
|     public function messages()
 | |
|     {
 | |
|         $logo_dimensions = trans('validation.custom.invalid_dimension', [
 | |
|             'attribute'     => Str::lower(trans('settings.company.logo')),
 | |
|             'width'         => config('filesystems.max_width'),
 | |
|             'height'        => config('filesystems.max_height'),
 | |
|         ]);
 | |
| 
 | |
|         return [
 | |
|             'logo.dimensions' => $logo_dimensions,
 | |
|         ];
 | |
|     }
 | |
| }
 |