I have a problem with the configuration in laravel in the language part.
I create the new folder with the translated files called ptBr
aponto no app.php 'locale' => 'ptBr' , instead of en.
But it returns the broken messages, as an...
Talk about it, I'm starting to use laravel and I have a problem when selecting some data.
I have the following tables: users , jobs , projects , job_user .
The table relationship of users and jobs is...
It is as follows: I have an array in javascript with the id that I want to increment using DB::table('team').increment->('points', 1000). How should I make my controller take this array and increment only the ids that are in it?
I have a system A where I store a session
$login = $request->input( 'login' );
$request->$session()->put('login', $login );
And a system B that stores the session:
$request->$session()->put('tentativa', 1);
Every tim...
I'm creating an application in Laravel 5.6 with Graphql, from this library: link
I was able to generate everything normally, but I'm having a hard time creating unit tests for application.
Any alternative how to test my requests for Grap...
Someone who has already performed application deploy in Laravel on Centos 7 Production Server to give me a help ??
I have already made all the basic settings possible, I created VirtualHost pointing to the public folder, etc ... However I can...
What is the best way to develop notifications that work just like Facebook when someone has a post? I am using PHP & Laravel 5.5. Does anyone know or have seen this in Angular / VueJS / Javascript?
Hello, I'm trying to pass 2 parameters to my controller using url and I'm getting the following error message:
Missing required parameters for [Route: teacher.average_faults] [URI:
teacher / average-faults / {team} {matter}].
My view...
Good evening, I'm developing a system with Laravel 5.6, and I have a table of USERS that has the attribute level. This attribute can be either USER or ADMIN. How do I block page / dashboard access if the user has a USER level?