Questions tagged as 'laravel'

1
answer

How to use Driver in a vue.js?

I found this comment related to the use of vue.js but in reality I could not make it go in my case I have the vue component related to the view This is my User.Controller driver in the view "users.blade" command call my compone...
asked by 01.10.2018 / 17:33
0
answers

Font Awesome in Laravel 5.7

I'm trying to include Font Awesome to a Laravel 5.7 Project. For this I did this: 1) npm install --save-dev @fortawesome/fontawesome-free --check and the folder is in node_modules 2) In Resources / sass / app.scss I add this: $...
asked by 20.09.2018 / 20:47
1
answer

Laravel - Error: SSL certificate problem: unable to get local issuer certificate

I'm starting to learn laravel and when I try to install homestead via git, I get this error: I already have several days without being able to solve it, I already tried to enter the link provided by the console and it has not helped me...
asked by 19.09.2018 / 04:58
0
answers

Problem laravel and http post with payu

I am integrating the payche webcheckout and I need to store information with the payu confirmation page, which sends me data by http post, the problem is that when I finish the transaction I am not receiving the data properly (I think) the form...
asked by 16.09.2018 / 10:26
1
answer

Code error: 42000. MYSQL

Good day I'm installing a laravel script on a vps and use a remote database, when I run the migration it throws me the error Code error: 42000. SQLSTATE[42000]: Syntax error or access violation: 1227 Access denied; you need (at least one of)...
asked by 16.09.2018 / 01:47
0
answers

Laravel 5.7 file_put_contents (... \ storage \ framework / sessions / nXRFzXcLwXRg4xW0G8BgFjlyATZyBBkA6FmHAgMg): failed to open stream: Permission denied

I'm doing a project in Laravel 5.7, I passed my project as zip via email, I unzipped it, but when I started the laravel server with php artisan serve and entered link >, throws the following error:    file_put_contents (C: \ projects \ V...
asked by 15.09.2018 / 05:07
0
answers

Laravel Validate Form via Ajax, using the FormRequest class

Hello the case is the following, I managed to validate a simple form using the Validator library, now my question is how it would be using a "request" that extends from the class FormRequest . Here I share both the frontend and backend code....
asked by 15.09.2018 / 00:11
0
answers

Select with 2 values

I have a select that I fill the data with pluck, but then at the time of showing it in the view I do not know how to concatenate more values. Driver : public function lista(){ $productos = Productos::pluck('Codigo','Descripcion','PVP',...
asked by 14.09.2018 / 01:28
0
answers

How can I pass a value to the VUE from a link

I need to pick up the id from a record and show it with VUE from a JSON. File response: class DetalleResource extends JsonResource { public function toArray($request) { return [ 'id' => $this->id, 'titulo...
asked by 25.09.2018 / 13:14
0
answers

Is it possible to create a single login for multiple tables in Laravel, ie different models?

I am new to the world of Laravel and I am doing an application where I have 3 direct models, with their respective drivers and migrations, I wanted to create a login that depending on the type of user redirects me to other views, I have 3 tables...
asked by 25.09.2018 / 10:25