Posts by Juliano • 57 points
3 posts
-
2
votes2
answers526
viewsQ: Passing of parameter Laravel
As step 2 or more variables on the route? View <a href="{{route('transferir.edit', [$destino->servidor->idservidor, $destino->setor])}}" class="btn btn-default btn-xs"…
-
3
votes2
answers2510
viewsQ: Pass string to uppercase - Standard
Good afternoon. I have the following code that saves perfectly. public function store(Request $request) { $this->validate($request, [ 'servidor' => 'required|unique:servidors|max:255', //…
-
0
votes1
answer190
viewsQ: Doubt Join with paginate Adjustable
How to mount the following consultation with eloquent? SELECT * FROM nos.destinos d join nos.servidors s on (d.idservidor = s.idservidor) where s.servidor like '%nome%' My models class Servidor…