File: /www/wwwroot/www.shooperm.com/Modules/Product/Http/Requests/UpdateBrandRequest.php
<?php
namespace Modules\Product\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UpdateBrandRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
"name" => [
'required',
Rule::unique('brands', 'name')->ignore($this->id)
],
"status" => "required",
'logo' => 'mimes:jpeg,jpg,png,gif|nullable'
];
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
}