Most voted "laravel-5" questions
Laravel is an open-source framework for developing web applications and services with PHP. Use this tag for specific questions about Laravel 5 or later.
Learn more…751 questions
Sort by count of
-
0
votes1
answer32
viewsHow to recover a data with Select2 in the registry edition?
Follow the code of Lade, when I go to edit mode the corresponding data does not appear and yes Lect2 is empty. <select name="cliente_id"> <option value=""></option> @foreach…
-
0
votes1
answer236
viewsHow to realize the Seed of a Factory within another class with Phpunit/Laravel?
I was studying the framework Laravel, and I was left with the following doubt: there is a way to realize the Seed of a factory within a common project class? It would be like calling command php…
-
0
votes2
answers88
viewsHow to recover calculated fields in Laravel?
My Edit controller $tipos = TituloTipo::all(); $devedores = Devedor::all(); $clientes = Cliente::all(); $divida = Divida::find($id); return…
-
0
votes2
answers93
viewsHow to implement two Request to validate individual and legal fields?
If the type of person selected is F is valid through the FisicaRequest public function store(FisicaRequest $reqFisica, JuridicaRequest $reqJuridica) { if ($reqFisica->tipo_pessoa == "F") { $data…
-
0
votes2
answers635
viewsBreaking lines in text from the database
I intend to load the page, the text coming from the bank, with the paragraphs and line breaks, just as it is in the bank. Below goes what I’ve tried: View.blade.php <div> <p…
-
0
votes1
answer170
viewsProblem returning several Routes in the Laravel
I have a route that when accessing www.exemplo.com/comer returns a view with the content. What I’m trying to do now and created another route to do the same effect but when I try to access…
laravel-5asked 7 years, 10 months ago César Sousa 2,025 -
0
votes2
answers633
viewsProblem with routes in the Laravel
I have slugs stored in the database of different tables, I intend to use the url always like this www.exemplo.com/slug. For this I created a single route for that which became so:…
-
0
votes1
answer62
viewsImage minification error with Gulp in Laravel
I am trying to make Gulp minify the images of my project. My project is Laravel 5.3 and I am using lib Laravel-elixir-imagemin Gulp to minify, only when I give the command gulp imagemin appears the…
-
0
votes2
answers134
viewsHow to return erased information with softdelete within a relation
There is a model in my application called payment that belongs to a user. I pull the information with Pagamento::latest()->with('user'); That way if a user is deleted, even if he already has soft…
-
0
votes1
answer198
viewsLaravel Request validation exists and nullable at the same time
I created a request class and inject it into the store method of the controler. My Rules method within the class has the following key: public function rules() { return [ //... 'campo_id' =>…
-
0
votes1
answer120
viewsTransform query result into Json
I’m trying to convert a result of a database query to json yet every time I make a resquest to get the value of the same the server goes always below and I believe it is because it is a lot of…
-
0
votes0
answers69
viewsProblem with delete after deploy
Good Afternoon. I deployed an APP I am developing in Laravel with PHP 7, in order to generate requests. The application is very simple, has: a register and consultation of clients; product…
-
0
votes0
answers150
viewsGroup By | Relationship Many To Many Laravel 5
I am developing an application in Laravel 5 where I have the tables employees, companies, exams, employee_exams and their respective fields according to Migration below: :: Companies Table public…
-
0
votes0
answers206
viewsStrange memory consumption PHP Laravel
All right guys, I’m using Laravel for a project and I’m kind of worried about using memory in some classes. So I decided to do a basic test and discover that a method was consuming a lot of memory…
-
0
votes0
answers630
viewsFile problem after upload, in Laravel 5.4
I have the following code to upload files to my Laravel application. upload. <div class="form-group"> <label for="name" class="col-sm-3 control-label">Documento *:</label> <div…
-
0
votes1
answer54
viewsProblems with Middlwares - Laravel 5.4
I am using a middleware on Laravel 5.4 and would like if the logged in user had permission 2 to be redirected to /admin/signups. The scope of the Handle method looks like this, but the redirect…
-
0
votes2
answers128
viewsLaravel directing HTTP method to wrong function in Controller
I have a project in Laravel and Vue.js where I have a role in Vue.js that sends a post with the data of a form, so far so good, only when the function this.$http.post() makes the request for the…
-
0
votes1
answer28
viewsOauth2 Authorization Problem using Wamp in Laravel 5.1
Good evening, I am studying API Restfull with Laravel 5.1 and came across a problem to request a request in Oauth. When running the built-in PHP server works normally…
-
0
votes1
answer752
viewsLaravel 5.4 and Dompdf - problems?
I’m trying to generate a PDF from a view, and it’s working, however, when I call the route to call the controller, the upload is for several seconds, even minutes to generate the PDF, and download,…
-
0
votes1
answer276
viewsRelation Many to Many with id type UUID Laravel 5.4 Eloquent ORM
I’m following Laravel’s documentation to make that relationship with the id type uuid. In the relationship methods I specified the pivot table and the IDS fields, however I went to debug in Tinker…
-
0
votes1
answer127
viewsHow do I resolve the error: Method getClientOrinalExtension does not exist, no upload de imagem com o Laravel 5.4?
Once again, I really need your help. You are giving me the following error when uploading the image to Laravel 5.4: Method getClientOrinalExtension does not exist. Next is my controller and view:…
-
0
votes0
answers480
viewsMethodnotallowedhttpexception in Routecollection.php - Laravel 5.4
I got this Error by putting a project on the server and trying to insert a product into the database. Error Whoops, looks like Something Went Wrong. (1/1) Methodnotallowedhttpexception in…
-
0
votes0
answers269
viewsCron input to call Scheduler from Laravel without working
I’m starting now with Laravel, I put a test project of it together with mongodb on an Amazon server, but after I enter the following single entry "* * * * php /path/to/Artisan Schedule:run >>…
-
0
votes1
answer69
viewsLaravel Controller?
How I can style an object into one array in the controller Laravel? Mapper::marker($marker['lat'], $marker['lng'],['label'=> "<div>".$marker['label']."</div>"]); Controller public…
-
0
votes2
answers851
viewsPHP - Laravel - Send a data entered in the database to another view
I’ve read questions about it, but I still can’t solve my problem. Here’s the thing, I have a separate Laravel view to register user. Ai in theory should redirect to another view where it will…
-
0
votes0
answers582
viewsDisplay a file that is in the Storage folder -- Orange 5.2
I have a problem with my code. I can normally insert the file into the Storage folder $pathfile = $this->path_monografia . $monografia->id . DIRECTORY_SEPARATOR . "monografia.pdf";…
-
0
votes1
answer1265
viewsCall stored Procedure in the Laravel using SQL Server with OUTPUT
I’m trying to call a stored file by Laravel 5.5 but I’m not getting it. I’m using SQL Server. Follow the stored Precedent: declare @CodigoRet int exec Generator 'LancaContaContabil', @Codigo =…
-
0
votes1
answer199
viewsKeep data already filled in the form
When bringing the form for the user to fill, I need that, if the data already exists in the database, it brings me the form filled with the possibility of the user "edit", but always creating a new…
-
0
votes1
answer198
viewsUse variables external to Route do Laravel 5 to send to view
Hi, I’m working with Laravel, and in my Routes file, I would like to leave created a variable that I want to use in all routes, like this: /Routes/web.php $foo = "ola mundo"; Route::get('/',…
-
0
votes0
answers83
viewsUndefined variable: institutions (View:
Expensive, I have a very boring and persistent mistake. Undefined variable: institutions (View: I have searched several times and do not know why the data is not passed to the form. Controller…
-
0
votes4
answers1204
viewsLaravel - Function in Controller
I have a question regarding Laravel and a project of mine being the function that receives the information from a form in which the administrator chooses the event and the usuarios (multiple select)…
-
0
votes0
answers175
viewsSay more with less in the UML class diagram
I’m having a question on how to draw up a diagram for this scenario: Application in Laravel MVC Too much code equal in the view and controller layers wanted to omit this Work of the facul I wondered…
-
0
votes1
answer614
viewsHow to set up an Laravel project with Vuejs
Greeting, I am a simple Laravel project and would like to configure my project to accept Vue.js, but I’m getting this error message; "Use of undefined constant titulo - assumed 'titulo' (View:…
-
0
votes0
answers159
viewsAngular 4 + Laravel 5 Error: The Resource you are Looking for has been Removed, had its name changed, or is temporarily unavailable
I have a project in which I am using Angular 4 and Laravel 5. Locally it is working locally but when I go up in production (I’m using Azure as a server) it doesn’t work properly. I have a…
php laravel-5 angular-routes angular azure-app-serviceasked 7 years, 5 months ago Leonardo Santos 63 -
0
votes1
answer314
viewsMy Laravel project does not see my Javascript file
The structure of my project is like this: The main layout page is this, this is where I get the file Vue, Axios and the app: <!DOCTYPE html> <html lang="pt-br"> <head> <meta…
-
0
votes1
answer319
viewsQuery for searching with multiple tables
I need to search the data of a table of processes, and of other 2 tables one of authors and defendants of the process, the doubt is how to search in grouped form that I can go through with foreach…
-
0
votes1
answer545
viewsHow to fix validation messages?
I am learning to program in Laravel with Vuejs, I am beginner, I started to develop a simple CRUD and managed to implement all the functionality of a CRUD, including field validations, my problem is…
-
0
votes0
answers579
viewsHeroku Server does not recognize my CSS and Javascript files
I recently created a project Laravel that is using Vuejs and Axios, and then sent to the Heroku server, but something strange happened, the page is with very strange visualization and I realized…
-
0
votes1
answer231
viewsCrud Ajax Laravel 5.*
I have a little problem. I’m doing a crud with Ajax + Laravel. "Everything" is working, more than when I update a data, it also registers. Well see how I’m doing. I have a Bhutan that I have an id…
-
0
votes0
answers12
viewsError installing npm on Ubuntu 17.04
I’m at the beginning of learning the Laravel along with ajax and I’m not able to pass data via post with ajax. This is my ajax: $(document).on('click', "#cad_academia", function(e){…
-
0
votes0
answers75
viewsInsert data into a Pivo Laravel table
I have a many to many relationship between items and area, as I do to relate the two within my item_area table in my store method? This is my view <h3>Criar um novo Item</h3> <form…
-
0
votes1
answer647
viewsUpload Images: More than one input file with the same name
I need to upload images, but I can’t create just one input and use the Multiple, like this: <input type="file" name="images[]" multiple> What I need is to create 5 inputs that in the backend…
-
0
votes0
answers514
viewsWith view PDF generated with Laravel-dompdf on Viewer.js?
I have an app Laravel that generates reports in PDF according to parameters received from a form via POST and would like to view the files generated with the viewer.js without having to save the…
-
0
votes1
answer179
viewsError when trying to perform a Relationship belongsToMany in Laravel
I am trying to effect a relationship belongsToMany in my Model but is bringing the error: Queryexception SQLSTATE[42S02]: Base table or view not found: 1146 Table 'api.codigo' doesn’t exist (SQL:…
-
0
votes2
answers825
viewsError in Restful API authentication with Curl PHP
I’m writing a web platform that uses Sptrans RESTFUL API - Living Eye. Authenticate my session with the code: <?php $url = 'http://api.olhovivo.sptrans.com.br/v2.1/Login/Autenticar?token='.token;…
-
0
votes1
answer33
viewsError making the list
Trying to get Property of non-object: @foreach($civis as $civil) <tr> <td>01</td> <td>{{$civil->matricula}}</td> <td>{{$civil->nome}}</td>…
laravel laravel-5 laravel-eloquent laravel-5.3 laravel-bladeasked 7 years, 3 months ago Jonathan Silva Gomes 21 -
0
votes1
answer139
viewsRegister N for 1 and N for N?
How can I register in a relationship 1-N and of N para M, I’m doing it this way, but it’s not cool: $endereco = new endereco; $endereco->complemento = $request->complemento;…
laravel-5 laravel-eloquent laravel-5.3 laravel-bladeasked 7 years, 3 months ago Jonathan Silva Gomes 21 -
0
votes1
answer378
viewsCheck if registration already exists, if there is only link
I want to check if the address has already been registered, if it is already registered I just want to link it to a civilian, but if there is not yet want to register the new address and then link.…
laravel laravel-5 laravel-eloquent laravel-5.3 laravel-bladeasked 7 years, 3 months ago Jonathan Silva Gomes 21 -
0
votes2
answers1965
viewsLaravel php auth system
How to authenticate the user login and password in Windows, I’ve been trying for a while but I can’t. Routes Route::get('/login',['uses' => 'loginController@login','as' => 'login']);…
-
0
votes0
answers60
viewsDistant relationship with Laravel 5.5
Guys, I need some urgent help! I have the following situation: Tables: saidas id ... saidas_produto id_saida id_entrada_produto entradas_produtos id id_entrada id_produto ... entradas id ... My…