source: app/Http/Requests/Dashboard/SocialLinksSettingsRequest.php@ 1f059b0

Last change on this file since 1f059b0 was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 738 bytes
Line 
1<?php
2
3namespace App\Http\Requests\Dashboard;
4
5use Illuminate\Foundation\Http\FormRequest;
6
7class SocialLinksSettingsRequest extends FormRequest
8{
9 /**
10 * Determine if the user is authorized to make this request.
11 *
12 * @return bool
13 */
14 public function authorize()
15 {
16 return true;
17 }
18
19 /**
20 * Get the validation rules that apply to the request.
21 *
22 * @return array
23 */
24 public function rules()
25 {
26 return [
27 "facebook" => "nullable|min:5",
28 "instagram" => "nullable|min:1|max:30",
29 "twitter" => "nullable|min:3|max:15",
30 "youtube" => "nullable|min:3|max:15",
31 "skype" => "nullable|min:6|max:32",
32 ];
33 }
34}
Note: See TracBrowser for help on using the repository browser.