Questions tagged as 'laravel-5'

1
answer

How do I know where the route came from and redirect back?

I have 3 tables in BD : Emitentes, Pessoas e Cidades . Being that in the Issuers table and in the People table I have FK id_cidade . When I am registering one, both Emitente and Pessoa have in the views a li...
asked by 03.04.2017 / 15:05
1
answer

Error message through middleware Laravel

I'm trying to pass an error msg through a middleware. If you use $ errors-> all () the error appears, but how do you use $ errors-> has ('active')? Or would it be easier to pass this middleware message? Another question is how to customize the e...
asked by 13.05.2017 / 18:10
2
answers

Laravel Insert data into one table and use the same id to fill in another

I'm starting in Laravel and I'm having a problem with inserting data into two mysql tables ... explaining better would be: I have a table called questionnaires where I have only ID and Description and another table called statements where I have...
asked by 21.02.2017 / 19:14
1
answer

Does not the Defect class exist?

I have the following error:    ReflectionException in Container.php line 731: Class App \ Defect does not exist I'm using laravel 5.4, I've already checked everything out right. Code: Defeito.php <?php namespace App; use...
asked by 14.03.2017 / 23:36
1
answer

Get created registry ID Laravel 5

I have the following code for creating a report: $this->repository->create($request->all()); return response()->json(['sucesso' => 'Relatorio cadastrado com sucesso.']); How do I get the created record ID and put it together...
asked by 17.11.2016 / 18:46
1
answer

Uploading image transforming to base64 - laravel

I'm having trouble receiving data from my View and transforming it to base 64 , in controller I'm doing this: public function store(ImagemRequest $resquest){ dd($resquest->all()); //Nest dd aparece ex0.1 $fi...
asked by 17.09.2016 / 05:13
1
answer

Get news via URL

I recently saw a video on youtube , where the guy through the URL of news that was in globe and other sites of the type, he recovered the title of the news, the body and the images along with the formatting used. The application was written...
asked by 03.12.2016 / 00:56
1
answer

I can not access my project in laravel 5 using Xampp [closed]

I started studying Laravel 5 and I was able to install the composer and php framework . I did some testing after the installation worked perfectly a wonder, I shut down my machine and the next day when I went to study the framework again...
asked by 14.06.2016 / 05:01
1
answer

How to install Laravel 5 without using composer?

Is there any way to install Laravel 5 without using Composer? I think in version 4 there was a way I did not need Composer, but it looks like 5 is now "more composer-dependent."     
asked by 24.08.2016 / 15:31
1
answer

Laravel - 'Route' call without a command for this?

I'm doing a test using Laravel, jQuery and PHP. I have routes, action in jQuery, methods in controllers and two views-blade, one to provide search elements (BillingListView.blade.php) and another to display the result (BillingApplication.blad...
asked by 25.08.2016 / 13:12