Questions tagged as 'laravel'

1
answer

Add a new route in a RESTful and use it in a Laravel form

Good afternoon, I'm in a problem that I can not solve, add a new route in a restful controller so (I found it on the internet) Route::get('admin/store_productos','AdminController@store_productos'); Route::resource('admin','AdminController');...
asked by 14.11.2017 / 20:02
1
answer

Vectors Input in Laravel

I need to collect all the inputs for 2 reasons: 1º Saber cuantos había. 2º Saber cual fue pulsado. The problem is that it returns only one position In the view: for ($i = 0; $i < 4; $i++) { echo " <input type...
asked by 13.11.2017 / 21:43
0
answers

How can I express the following Query to eloquent?

SELECT tipo_entidad.id, tipo_entidad.descripcion, tipo_entidad.vigente FROM tipo_entidad INNER JOIN estado AS e ON e.valor = tipo_entidad.vigente WHERE tipo_entidad.vigente=e.valor and e.tabla = 'VIGENCIA' AND (tipo_entidad.descripcion LIKE '%ad...
asked by 09.11.2017 / 04:00
1
answer

how to enter data in a textbox and keep showing the data?

I have a table where I entered student grades. In each row or record of the table I have 3 texbox for which I entered the ratings. I need to show them there when I enter them and also be able to update them there ... I now send the grades and th...
asked by 09.11.2017 / 02:33
1
answer

Edit a form in laravel

Somebody can help me, I do not load the data in the view of editing in laravel. I'm making a query so you know which record to edit .. I have seen that this is often done: $asignacion=C_materia::find($id); $id = $asignacion->idc_...
asked by 10.11.2017 / 01:47
1
answer

Problem sending mail from laravel

I have the following configuration in the .env file MAIL_DRIVER=mail MAIL_HOST=smtp.gmail.com MAIL_PORT=587 [email protected] MAIL_PASSWORD=******** MAIL_ENCRYPTION=ssl and my driver in the following way: <?php names...
asked by 07.11.2017 / 06:56
0
answers

Include chart (chart js) to PDF (snappy pdf) using laravel 5.3

Good, I want to include a chart (created by chart js) to a pdf file by Snappy pdf, but for some reason the view with which I create the pdf does not show the chart, this is what I have. Controller public function chartPDF(){ $chartjs...
asked by 07.11.2017 / 22:41
1
answer

Error Uninitialized string offset: 2 when trying to save array data in database

Hello friends, I have this error when trying to save the data in my database, I think the problem is how to save the arrays, thank you for your help. $pensum = new Pensum (); $pensum ->carrera = $request ->carrera; $pensum -&g...
asked by 03.11.2017 / 23:50
1
answer

how to make a faker with several related tables in laravel?

I need to fill my tables in my database in the following way. an example I have the plan table, audits, objective_General. 3 plans must be completed and for each plan 4 audits and 4 general objectives for each audit. This is an idea of what I...
asked by 04.11.2017 / 01:06
0
answers

Translate a sentence from Mysql to to Eloquent, laravel drivers 5.4

Hello I still do not know much about how to pass the queries to laravel, I have the following (which runs perfectly what I want in Mysql): query in mysql    'select distinct a.temario as Event, count (b.id) as Participants from   events a,...
asked by 04.11.2017 / 18:05