Questions tagged as 'laravel'

2
answers

Delete and update do not work in apijson error MethodNotAllowedHttpException

I am developing an api json. I'm finding that I miss the following error: MethodNotAllowedHttpException I have executed the php artisan route:list and the routes are well defined. The problem I find that the update and the...
asked by 01.04.2018 / 14:27
1
answer

Are there any Plugins to make systems with self-managed forms in laravel or php? [closed]

Good morning, the query is specific, do you know any plugin, library or something similar to do self-managed crud from the backend, that is, to create an application that people can customize their forms to be used later? Excuse me if I explain...
asked by 09.09.2017 / 16:25
2
answers

how to upload image in laravel

I would like to upload an image and I do not know how to create the code in laravel so I have the blade and so the controller     
asked by 07.12.2018 / 02:06
1
answer

Help with a Javascript function to add several dataset to a chartjs from the database?

function _cargargraficamatriculas(anio, sector, calendario, subregion, municipio) { var url = "grafica_matriculas" + "/" + anio + "/" + sector + "/" + calendario + "/" + subregion + "/" + municipio + ""; $.get(url, function(resul) {...
asked by 06.06.2018 / 22:02
1
answer

Problem with routes in Laravel when going to server

I have a Laravel 5.6 project, everything is fine as I develop it, the question is that in my Ajax methods I have url: / path1 / path2 / rut3, etc and if it works perfect but when I deploy to the server, it gives me the error of that the routes d...
asked by 25.09.2018 / 19:32
1
answer

element Vue js does not work

The view does not recognize the <Meta> </Meta> element, it does not show the table or the elements declared in meta.vue This is my view @extends('layouts.app') @section('content') <div class="container"> <di...
asked by 19.03.2018 / 16:15
1
answer

Show errors in Laravel

Laravel 5.4 does not show the errors, only error 500 occurs when something fails. How do I make it so that instead of being shown 500 errors tell me where is the error? I have done everything and I do not succeed, I do not know what they will ha...
asked by 22.10.2017 / 00:02
1
answer

Load data in specific columns

I have a collection that brings me data from the station table, equipment table related to that station and the parameters that each team can measure. This is obtained through the relationships in the models. Estacion Equipo Equipo_estacio...
asked by 26.04.2017 / 16:33
1
answer

Problems obtaining values from a foreach LARAVEL

Entry for characters: Character1, Character2 $personajes = explode(',',$character); $result = array(); if (count($personajes)>1) { //count(personajes) = 2 foreach ($personajes as $persona) { $obt_id...
asked by 22.07.2016 / 20:14
1
answer

laravel routes error

I have the following route Route::post('guardar_registro', 'Frontoffice\Perfil_paciente\completar_registroController@guardar_registro'); and the next form <form action="{{ url('guardar_registro') }}" method="POST" accept-charset="utf-...
asked by 13.12.2018 / 22:35