%PDF- %PDF-
Direktori : /var/www/html/news/app/Http/Requests/InappropriateWord/ |
Current File : /var/www/html/news/app/Http/Requests/InappropriateWord/InappropriateWordStoreRequest.php |
<?php namespace App\Http\Requests\InappropriateWord; use App\Http\Requests\BaseRequest; class InappropriateWordStoreRequest extends BaseRequest { /** * 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() { return [ 'word' => 'required|string|unique:inappropriate_words,word', ]; } public function getSanitationRules() { return []; } }