Posts by Vinicius Luiz • 31 points
4 posts
-
1
votes4
answers297
viewsA: About Routes and Links
In your view will be more or less something like this: <td>{{ route('usuarios.edit' , [$title => 'Editar' , 'ID_USUARIO' => $usuario->id]) }}</td> And your route will be next:…
laravel-5answered Vinicius Luiz 31 -
0
votes1
answer52
viewsA: Request returning Decimal
Cast the type you want: String dd((string) $request->get('background')) Integer dd((int) $request->get('background'));…
laravel-5answered Vinicius Luiz 31 -
1
votes1
answer1061
viewsA: Artisan command not to lose data from database
If you make changes like adding/deleting a column from some table it is recommended to create a new Migration similar to this one <?php use Illuminate\Database\Schema\Blueprint; use…
-
1
votes4
answers297
viewsA: About Routes and Links
Try changing to: Route::get('/' , 'UsuariosController@metodoDoControllerUtilizado'); This should work for your case
laravel-5answered Vinicius Luiz 31