Posts by Igor Carvalho • 1 point
3 posts
-
0
votes3
answers934
viewsA: Best way to save login data
The best way to save login (and the same one used in several frameworks) is certainly Session. I save my projects in session whenever a user logs in or drops out of the site. A website that can…
-
0
votes2
answers7000
viewsA: Laravel, call Action from a Controller from a View?
A way that I constantly use in my tests are through Helpers of Laravel himself. I will use as an example this route in the file Routes web.php:…
-
0
votes2
answers3524
viewsA: system login Laravel with permission levels
As I noticed, you are using the is_admin column that was provided in the example of Laravel documentation but in this case it would not be the most appropriate because its permission levels are 3…