Sindbad~EG File Manager
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest extends FormRequest
{
public function authorize()
{
return true;
}
public function rules()
{
$id = $this->route('category');
return [
'name' => 'required|max:255',
'slug' => 'nullable|unique:categories,slug,' . $id,
'order_level' => 'nullable|integer',
'digital' => 'required|in:0,1',
'banner' => 'nullable|integer',
'icon' => 'nullable|integer',
'cover_image' => 'nullable|integer',
'meta_title' => 'nullable|max:255',
'parent_id' => 'nullable',
'commision_rate' => 'nullable',
'filtering_attributes' => 'nullable|array',
'filtering_attributes.*' => 'exists:attributes,id',
];
}
public function messages()
{
return [
'name.required' => translate('The category name is required.'),
'slug.required' => translate('The slug is required.'),
'slug.unique' => translate('The slug has already been taken.'),
'digital.required' => translate('Please select the category type.'),
'banner.image' => translate('The banner must be an image.'),
'icon.image' => translate('The icon must be an image.'),
'cover_image.image' => translate('The cover image must be an image.'),
'parent_id.exists' => translate('The selected parent category is invalid.'),
];
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists