Questions tagged as 'laravel'

0
answers

Problem to order related table laravel

I'm trying to sort a related table without success the original driver looks like this: $products = Product::orderBy('nombre', 'asc') ->where('user_id', auth()->user()->id)->with('Coment') ->get(); And the way I'm...
asked by 01.12.2018 / 14:12
1
answer

Filter in Laravel for work not done, incomplete or completed

I have been looking for a solution to this problem for some time but I have not found anything that I can adapt. There are two tables ordensiembras and siembras , one order can have several sowings. The Ordensiembras mod...
asked by 25.11.2018 / 18:15
1
answer

Error editing an entity with a unique Laravel field

I have an entity activities with the following Form Request as indicated in the documentation public function rules() { return [ 'name' => "required|max:200|unique:activities,name,". $this->activity_id ]; } When editin...
asked by 24.11.2018 / 00:51
0
answers

Laravel - Auth :: attempt

Good morning community of Laravel, today I come with a challenge, I hope your favorable answers. I would like to be able to authenticate myself with users of two different databases. Validate information is not a problem. In my application I...
asked by 23.11.2018 / 20:36
1
answer

Obtain data from a Pivot laravel table

I'm trying to get the data from my pivot table. Right now the way I do it is like this $sala = Saluser::where('sala_id',$sala->id)->pluck('user_id'); $usuario = User::whereIn('id',$sala)->get(); The drawback is...
asked by 14.11.2018 / 22:34
1
answer

Why migration in laravel does not create a third table that is password_resets?

Hello friends, good evening, I tell you that I am starting laravel and I am in database viewing migrations because I tell you that everything is fine but error jumps and I do not believe the password_resets table that supposedly should create me...
asked by 07.11.2018 / 03:14
1
answer

Problem with DataTable

What happens is that when you refresh the page you create a product automatically (it is the last product you enter), that is, you are inserting it when you refresh the page repeatedly, and the other problem is that when you just entered the sec...
asked by 19.10.2018 / 14:59
1
answer

Edit image Ajax

I'm getting into laravel and I had a problem when trying to edit some images. When creating or registering a product with its respective image there is no problem as I do not use ajax. but at the time of editing I can not access the data generat...
asked by 22.09.2018 / 07:49
1
answer

Download Files / Images Laravel 5.2

I tried to download files or images, but I just get this Sorry, the page you are looking for could not be found. 1/1 NotFoundHttpException in RouteCollection.php line 161: My route Route::get('/download/{$file}' , 'DetailController@...
asked by 19.07.2016 / 17:26
1
answer

View pdf files in Laravel

I have pdf files already uploaded to the server, I load them in a list and I want to be able to show them to the user, but for all the links it always shows me the first one I went up. What I send from the controller: public function index(...
asked by 29.09.2018 / 17:36