1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace App\Http\Requests\FriendshipLink;
- use Illuminate\Foundation\Http\FormRequest;
- class Store 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()
- {
- return [
- 'name'=>'required|unique:friendship_links,name,'.$this->route()->id,
- 'url'=>'required|unique:friendship_links,url,'.$this->route()->id,
- ];
- }
- /**
- * 定义字段名中文
- *
- * @return array
- */
- public function attributes()
- {
- return [
- 'name'=>'名称',
- 'url'=>'链接',
- ];
- }
- }
|