%PDF- %PDF-
Direktori : /var/www/html/kpk/api/app/Http/Requests/Relators/ |
Current File : /var/www/html/kpk/api/app/Http/Requests/Relators/RelatorStoreRequest.php |
<?php namespace App\Http\Requests\Relators; use App\Http\Requests\BaseRequest; class RelatorStoreRequest 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 [ 'name' => 'required|string|max:255', 'code' => 'required|string|max:10|unique:relators,code', ]; } }