Questions tagged as 'laravel'

0
answers

Laravel graphic reports with charts

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...
asked by 15.06.2017 / 02:56
2
answers

Insert array in MySQL table with Laravel 5.4

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 =...
asked by 30.06.2017 / 16:53
0
answers

Upload file to an ftp server Laravel 5.3

Trying to use the Laravel-FTP plugin Ajax: function subir_archivo(archivo){ console.log(archivo); $.ajax({ type: 'post', url: 'materiales/subir', data: { archivo: archivo }, }).the...
asked by 10.06.2017 / 05:28
1
answer

Function Auth does not work for me in Laravel php

I did a manual authentication in Laravel 5.4 and I can not get it to return true the function. In my database, enter a record from the database administrator with username = admin and password = admin. (I also tried to create the username and...
asked by 07.06.2017 / 04:38
1
answer

ErrorException Property [path_foto] does not exist on this collection instance. Laravel 5.4

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...
asked by 14.06.2017 / 06:43
2
answers

Highcharts and ajax

I'm trying to create a graphic with highcharts from some data that I get with ajax by json . This is my .js : function graficoData (data) { $('#chart1').highcharts({ chart: { type: 'column' }, title: { text: 'E...
asked by 25.06.2017 / 20:03
1
answer

TokenMismatchException in VerifyCsrfToken.php line 67: How to get token

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...
asked by 02.06.2017 / 23:55
1
answer

table ratings laravel

I have a table and its respective Qualification model, where I have 8 notes, average, exam, final grade. In my controller I calculate the average with the notes other than 0, and the final grade. function guardarCalificacion(CalificacionReques...
asked by 28.05.2017 / 01:51
0
answers

Problems with a component created with vuejs

I have the following code, which returns a list, which is loaded into a table. Vue.component('tickets',{ template: '#tickets-template', data: function(){ return{ tickets:[] } }, created:function(){ this.getTickets()...
asked by 23.05.2017 / 22:02
0
answers

Problem with carbon date

I get a date date of the database and when I show it, the day and the month are correct, but the year is not. This is how I get the date from the database: $fecha_ingreso = \Carbon\Carbon::parse($user->fecha_ingreso); //2016-05-05...
asked by 18.05.2017 / 22:53