Viewing file: FcategoryRequest.php (1.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class FcategoryRequest extends FormRequest { /** * Determine if the user 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() { $id = $this->fcategory ? ',' . $this->fcategory->id : ''; $required = $this->category ? '' : 'required';
return [ 'slug' => [$required,'unique:fcategories,slug'. $id,'regex:/^[a-zA-Z0-9-]+$/'], 'text' => ['required'], 'name' => 'required|max:255', 'meta_keywords' => 'max:255', 'meta_descriptions' => 'max:255', ]; }
/** * Get the error messages for the defined validation rules. * * @return array */ public function messages() { return [ 'slug.required' => __('Slug field is required.'), 'text.required' => __('Text field is required.'), 'slug.unique' => __('This slug has already been taken.'), 'slug.regex' => __('Slug Must Not Have Any Special Characters.'), ]; } }
|