Posts by Alex Rodrigues • 13 points
3 posts
-
0
votes2
answers710
viewsA: Do I need to use a middleware auth on the controller if I use Gates from Laravel?
Hello, I was having that doubt, but I went to hit my head and it was like this: Controller: public function __construct() { $this->middleware('auth'); $this->middleware('can:admin'); } You are…
-
0
votes2
answers27
viewsA: Auto-increment not working in Laravel
You can also insert with mass assignment. View @extends('cabecalho') @extends('form') @section('cont2') <form action="{{url('professor')}}" method="post"> @csrf <label…
-
1
votes2
answers708
viewsQ: I want to view all json array records
I made this javascript code: function ajax(response) { var dados = response JSON.parse(dados).forEach( function (registro){ var html = "<tr>" html += "<td>" html += registro.nome html +=…