Questions tagged as 'laravel'

0
answers

create a custom laravel 5.5 login

Hi, I'm trying to create a personalized login, my login would be like this: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"...
asked by 28.01.2018 / 22:51
0
answers

How to visualize with dompdf in laravel

Good morning, I have a problem I can not see the pdf and it does not show me an error This is my license plate controller $reporte_mat= new PdfController(); $reporte_mat->crear_reporte_matricula(1); This is my driver PdfController ()...
asked by 31.01.2018 / 09:46
0
answers

Vue.js 2 "Problem" with Single-File component

I am working on a project with Laravel 5.5 and Vue.js 2.x, after searches and questions I came to the use of components. But still I have an error when the page is rendered, I get the following error:    [Vue warn]: Property or method "quar...
asked by 06.02.2018 / 16:06
0
answers

laravel pass variable parameters on button

In the grid of a CRUD, I have a search button in the upper part next to the title. In that button I go to the corresponding method in the controller, but passing the id of the record. I put this: <a class='btn btn-info' href='{{ route('prod...
asked by 08.02.2018 / 17:17
1
answer

problems folder laravel project

I have a project created with Laravel in the folder of my localhost. In the browser I open the project folder, but I can not find the public folder. However, on my computer if there is such a folder. I'm new to Laravel and I do not control much....
asked by 23.01.2018 / 10:45
1
answer

A Form for two tables

Good afternoon, the question is this: Bearing the model: Users = > Attributes: name, email, password User_profiles = > Attributes: last_name, city, phone, user_id I need to add the last_name field in the registration form, and crea...
asked by 01.02.2018 / 20:41
0
answers

Footsteps AJAX LARAVEL 5.4

Greetings, I am presenting a difficulty using ajax in Laravel 5.4 , jQuery v3.2.1 and Bootstrap v3.3.7 to bring information. I have done the following: In the File web.php the route was created: Route::resou...
asked by 29.01.2018 / 18:35
1
answer

Laravel 5.5 and Request

Good morning, I will try to explain myself as best as possible, I am new to Laravel What I want to do is be able to save DB fields with data but they are not in the form, because I bring that data from a webservice, which works well, check it...
asked by 20.01.2018 / 14:40
0
answers

They will not let me enter the Laravel website

You see, now it turns out that I get to enter the laravel page and they ask me to create a user, with their name and password. I create my user account and try to login, but I get this. How do I fix it? By the way, this is the dat...
asked by 21.01.2018 / 17:34
1
answer

Add foreign key data Laravel in the controller

I have the following driver public function store(MachineCreateRequest $request) { $user_id = auth()->id(); $company_id = User::find($user_id)->company->id; //ID = 3 $machine->company_id = $company_id; $machine...
asked by 23.01.2018 / 01:37