Questions tagged as 'laravel-blade'

2
answers

Laravel - Assign a value in an option of a select!

Hello (I'm just learning), I need in the value to assign the value of the id. Example: <option value="{{$idcategoriacuenta}}">{{$categoria}}</option> The problem is in the array () I do not know how to send the value o...
asked by 20.11.2017 / 05:57
1
answer

Where does the code of the config method ('auth.default.domain') come from in LARAVEL?

I have a question since I installed laravel 5.4 and the template adminLTE 3.0, in which after everything was working I put it in Spanish, everything normal up there, then I wanted to change the html code of the login, but I found that the code i...
asked by 14.06.2017 / 00:19
0
answers

Someone knows Laravel Voyager

I have a problem that I can not solve, does anyone know of Laravel an ADMIN named Voyager? I have problems with relationships when editing form, which gives me an error and, as much as I've read in English, a lot of people do, but I can not f...
asked by 21.12.2018 / 21:53
1
answer

Simulate event click JavaScript for laravel

I have a capture form, my problem is that when I want to see or edit some options I have them hidden if the user clicks on the radio activates other radios or text fields this works perfectly for me. My question is how do I simulate the click...
asked by 21.12.2018 / 16:53
1
answer

I can not list an array in a blade view "Trying to get property of non-object"

I need to list some boxes in a quote. inside the gallery view add checkbox inside an array to send them to the controller and this sends them to the view that I need to contact. this data comes to the view but it throws me the following error...
asked by 17.12.2018 / 22:05
0
answers

pass several files to a laravale form

I have this method in which when I touch the file checks, all the files that are checked are displayed in my select public function mostrar(Request $request){ $clients = DB::table('clientes')->select('id','nombre')->where('pais', $...
asked by 04.12.2018 / 15:46
0
answers

my javascript does not work but it does not throw any errors either

At the end I put the script of what I want to execute, but it does not send me an error or something. My index.blade.php : @extends('adminlte::page') @section('title', 'AdminLTE') @section('content') <section class="con...
asked by 01.12.2018 / 21:53
0
answers

Schedules of laravel in cpanel, shared server

I am trying to register the Schedule to execute the commands that are already created, but they are not executed, I register them from a cron task I have used several ways /usr/local/bin/php /home/findelmu/findelmundoremates/artisan schedu...
asked by 24.11.2018 / 00:53
0
answers

Error uploading files in form and sending to the controller. Laravel

In a form I have an input of type 'File' to upload a file and get the value of that file in the controller, but when doing dd ($ request-> file ('file') it shows me NULL. {{ Form::open(array('url' => '/save'), ['id' => 'Form'...
asked by 19.11.2018 / 14:59
1
answer

Error uploading images in laravel to database

I'm trying to upload an image to the database from a form This is my view {{ Form::open(array('url' => '/saveAbsence'), ['id' => 'absenceForm'], ['enctype'=>'multipart/form-data']) }} {{Form::file('cover_image')}} {{Form::close()}}...
asked by 13.11.2018 / 14:27