Skip to content

Commit 658d970

Browse files
committed
slug validation rule
1 parent 0e80d8c commit 658d970

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Http/Requests/CategoryFormRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public function rules()
1111
return [
1212
'image_id' => 'nullable|integer',
1313
'title.*' => 'nullable|max:255',
14-
'slug.*' => 'nullable|alpha_dash|max:255|required_with:title.*',
14+
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
1515
];
1616
}
1717
}

src/Http/Requests/FormRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function rules()
1414
'website' => 'nullable|url|max:255',
1515
'image_id' => 'nullable|integer',
1616
'title.*' => 'nullable|max:255',
17-
'slug.*' => 'nullable|alpha_dash|max:255|required_with:title.*',
17+
'slug.*' => 'nullable|alpha_dash|max:255|required_if:status.*,1|required_with:title.*',
1818
];
1919
}
2020
}

0 commit comments

Comments
 (0)