You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi;
When I create a new blog-tag an error occurs with the message "insert Blog Tag"
I solve it by remove "required" from function rules() which inside CreateBlogTagsRequest file (app/Http/Requests/Backend/BlogTags/CreateBlogTagsRequest.php)
public function rules() { return [ 'name' => 'max:191|unique:blog_tags,name,', ]; }
The text was updated successfully, but these errors were encountered:
Hi;
When I create a new blog-tag an error occurs with the message "insert Blog Tag"
I solve it by remove "required" from function rules() which inside CreateBlogTagsRequest file (app/Http/Requests/Backend/BlogTags/CreateBlogTagsRequest.php)
public function rules() { return [ 'name' => 'max:191|unique:blog_tags,name,', ]; }
The text was updated successfully, but these errors were encountered: