Questions tagged as 'laravel'

1
answer

Google Timeline Charts using Laravel (PHP)

I have a controller that queries the data, transforms it into JSON and sends it to the view (which contains the timeline). The chart you're using is this: link public function monitor_sala() { $data = []; $reservas = ReservaS...
asked by 20.08.2018 / 20:40
1
answer

How to access a json with jquery being passed by php [closed]

I am passing a json to my view and I need to play it inside full calendar events, but I do not know how to access this json through my URL In my localhost the route of the view that receives json is this " link " $(function() { $('#c...
asked by 17.04.2018 / 04:47
2
answers

How to pass values of type Array in Postman

I'm developing an API, and one of the modules is the ACL (access control list) in the Laravel Framework. I came to a problem that I have not yet found plausible solutions, which is like testing values that get more than one parameter inside i...
asked by 23.11.2018 / 20:35
1
answer

Add multidimensional array as an array item

I'm working with laravel and I'm implementing a menu based on permissions, I'm retrieving menu data from a table in my database. I created a model and in it I'm doing the logic to retrieve the menu items and if the item has a parent_id column wi...
asked by 11.12.2017 / 18:39
1
answer

Blank space in menu with bootstrap

Good afternoon, I'm trying to split a menu with a white line in the middle with css. I managed to do it, but on the right side the menu gets a space without the line and in the items that are below is the white line also sort of picking up...
asked by 11.11.2017 / 18:14
1
answer

SQl in PostgreSQL: No Repeat Values of a Table field

I have a select that displays the names, date and values paid by clients. I have to display a list without repeating the names. SELECT c.name, p.created_at, p.amount_paid FROM payments as p, clients as c WHERE p.crea...
asked by 27.10.2017 / 16:31
1
answer

Error Laravel: [ReflectionException] Class App \ Units \ Commands \ Inspire does not exist

I'm getting this error: ConsoleKernel.php code <?php namespace App\Units; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel; use App\Console\Commands\EnvioEmailBlCron; class ConsoleKernel extends K...
asked by 30.10.2017 / 19:11
1
answer

Laravel with Site + Cms + Intranet

I am creating a website that will be a cms and an intranet. In CakePhp I separated these applications with Plugins, that is, site in the root of the project / cake and plugins for the others. Well laid out, organized and functional How can I...
asked by 31.07.2016 / 03:40
2
answers

Laravel 4 Deploy Fail in shared hosting [closed]

I'm trying to upload my first project with the Laravel 4 framework and I'm having a problem. Upload all FTP project files as there is no other option for contracted service. I uploaded the files and created a .htaccess file that is in the...
asked by 13.03.2014 / 21:57
1
answer

Laravel - Bring SELECT SELECT type already selected when editing

I am trying to bring a select already selected according to the information that is stored in the database. But I'm having a lot of trouble. I'll leave the code below. Controller public function ListaUf() { $ListaUf = Estado::all();...
asked by 18.12.2018 / 20:32