Questions tagged as 'laravel'

1
answer

Create a query in Eloquent

How can I convert this query to eloquent (I've tried it and I ask to ask since I have no idea) select id from solicitudes where id not in (select autorizaciones.solicitud_id from autorizaciones)     
asked by 01.03.2018 / 23:07
2
answers

Problems with routes in Laravel

I have a small problem with one of my routes ... I have my index which shows me several products (9 to be exact) when selecting one of my products therefore my route changes with the specification of my product example: "store \ donuts" in th...
asked by 23.08.2018 / 18:09
2
answers

Problem with links in laravel

I have developed an application in laravel 5.5 and I have added a template that I have purchased. I have the problem in the main layout, which is where I have the top, horizontal and vertical menu bars and, in some views, I do not respect hyperl...
asked by 27.08.2018 / 16:00
1
answer

Show quantity of items and search input in Datatable AdminLTE?

I am developing an application in Laravel 5.6 and implement AdminLTE , everything works correctly and implements the corresponding files of both js, css and the sample structure of the html. But my result is the following: This is my:...
asked by 13.03.2018 / 19:04
2
answers

pass variables in Laravel

I'm starting to create a CRUD. In the index method of the controller I have put this: public function index(){ $productos=Producto::get(); return view('productos.index')->with('productos',$productos); } And in the index.blade.php...
asked by 08.02.2018 / 13:19
2
answers

upload a file in local laravel

I want to upload a file from a form in Laravel. Input::file('imagen')->move('/public/imagenes/asdf',$producto->id.Input::file('imagen')->getClientOriginalName()); I tried this but it does not work, I get this error:    Call to a...
asked by 09.08.2017 / 08:57
1
answer

laravel calculus age

Help I need to calculate the age, I have the date of birth but I do not find the function, this is what I have <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12""> <div class="form-group"> <label for="fecha_nacim...
asked by 24.05.2017 / 02:45
1
answer

Jquery.Ajax does not work in Chrome, but if it works in Firefox

I am using a method that loads information from a database in a combobox, but what is shown depends on the previous selection in another combobox ... A dynamic combobox. It happens to work perfectly in Mozilla Firefox (v.54.0) but does not...
asked by 16.06.2017 / 17:54
2
answers

What is the difference between these addresses in laravel?

I am new to laravel and I would like to know what is the difference between these two ways of redirecting and sending a message in laravel. First way: Session::flash('message','Usuario actualizado correctamente'); return redirect::to('/usuario...
asked by 02.05.2017 / 07:43
2
answers

Query in laravel with Relationships from blade?

Good I have the following tables Users Requests Servers Which are related as follows. A User has several Requests A Server has several Requests Now what I need is to obtain all the servers associated with the requests that th...
asked by 02.06.2017 / 23:50