Hello I need help to pass the results of my query to the charts but I do not know how.
those 3 values that I got from the query
By Dispatch
Dispatched
Planned
I have to place them
- > values ([78,10,20])
I'm using
link
This is my controller...
I have a form like this:
What I want is that when selecting two or more sports, add a row for each sport with the id of the selected name, until now in my database is stored as follows:
And here is my Controller code:
$data =...
Good morning,
I have the following function in a laravel driver
public function Show ($ id) {
$configuracion = FrontConfiguracion::find(1);
$contacto = FrontDatosContacto::find(1);
$areas = FrontAreas::find($id);
$funci...
I've been having a problem with running composer update in my production repository for a while. Only in production, in DEV and PRE does not happen to me, they all have the same configuration and in the end they pull almost from the same...
I tell you ... I have a very large database, and the truth is that I would not have problems in elbowing 20 or 25 tables within the migrations of PHP / Laravel. The problem is that they are 97 tables, mostly moderately large. ..
To the point...
I'm wanting to show all the users currently connected and I came up with the following way, which I do not know if it's the right one.
First I detect the event when the user logs in and redis sets a session variable:
Redis::set('user:id:' ....
I try to save a note through the Store method with a request POST to the path /categorias , if I log in the system works correctly, but I have no idea how to do it through of PostMan, I understand that it will never be possible be...
I need to get all Services that are not associated with the requests which are associated with a user .
So basically the models are
<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User...