Level 75
See if this article helps: https://laraveldaily.com/post/laravel-vue-how-to-display-validation-errors
2 likes
I'm trying to make a word counter in a textbox.
//StoreTodoRequest.php
public function rules(): array
{
return [
'name' => 'required|max:50',
];
}
// Vue
<textbox-limiter :limit=50 />
Is there any way to get the rules or is it better to just hardcode it?
Please or to participate in this conversation.