sarga/packages/Webkul/Admin/src/Http/Requests/ConfigurationForm.php

52 lines
1.1 KiB
PHP
Raw Normal View History

<?php
namespace Webkul\Admin\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class ConfigurationForm extends FormRequest
{
/**
* Determine if the Configuraion is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
$this->rules = [];
2020-02-28 10:25:53 +00:00
if (request()->has('general.design.admin_logo.logo_image')
&& ! request()->input('general.design.admin_logo.logo_image.delete')
) {
$this->rules = [
'general.design.admin_logo.logo_image' => 'required|mimes:jpeg,bmp,png,jpg'
];
}
return $this->rules;
}
/**
* Get the error messages for the defined validation rules.
*
* @return array
2020-02-19 10:26:44 +00:00
*/
public function messages()
{
return [
'general.design.admin_logo.logo_image.mimes' => 'Invalid file format. Use only jpeg, bmp, png, jpg.'
];
}
}