Posts by Alex Santana • 11 points
2 posts
-
0
votes1
answer68
viewsA: Problems displaying data in modal with foreach
You can set the values in the modal with javascript as follows. In the button that calls the modal stays that way. <button type="button" class="btn btn-info" data-toggle="modal" data-…
-
1
votes1
answer169
viewsA: Laravel 5.8 - validation of multiple ex.video files
Using the Laravel validate. $request->validate([ 'anexo' => 'required', 'anexo.*' => 'image|mimes:jpeg,png,jpg', 'anexo.*' => 'max:2000' ]);…