Most voted "laravel-8" questions
Use this tag when the question refers to some resource, information, or problem relating exclusively to the PHP programming language. For example: questions about classes, methods, functions, syntax and general use of this language. Do not use this tag if PHP is used circumstantially, but has no relation to the question problem. For example: do not use this tag for questions about HTML formatting, CSS or Javascript code.
Learn more…17 questions
Sort by count of
-
1
votes0
answers79
viewsExtender models of the setTable Passport does not work
I extended the 5 models of the Passport: I extended because I have to add Shema to the table name and for that I have used this function in the constructor of my other models: public function…
-
1
votes0
answers45
viewsLaravel Excel maatwebsite validate spreadsheet before importing to database
I am trying to validate a spreadsheet before importing it to the database, I need to check if there is any date above today’s date in the file, but I can only check the first line and there may be…
-
0
votes4
answers1271
viewsError in setting Route Orange 8?
I know it might be a beginner question, but I really can’t solve it, and I put the address in the browser the route works, but when I call from blade doesn’t work. I created a new route and I am…
-
0
votes0
answers64
viewsLaravel Horizon | Call to Undefined method Laravel Horizon Redisqueue::enqueueUsing()
All steps in the Laravel documentation have been followed and reviewed. After all configured, when trying to create a job the following error is logged: local.ERROR: Call to undefined method…
-
0
votes2
answers64
viewsHow to use a customizable name for the password field in Laravel 8?
I’ve tried everything, but nothing works. I’m pretty sure the reason is that the default name of Attempt "password" does not match the name of the passwordhash column, <?php namespace…
-
0
votes0
answers18
viewsLaravel 8 is creating a session file for each visitor
With each new visitor to the site, Aravel is creating a new session file in the/Sessions framework folder, even if that user does not create an account or log in or anything like that. Entering a…
-
0
votes0
answers31
viewsHow do I detect logout when the browser closes or when the session closes (timeout reached, inactivity, etc.) in Laravel 8?
I am trying to change the default behavior of the Illuminate Session Cookiesessionhandler class so that when the Destroy method is invoked it is registered in the database when a user session has…
-
0
votes1
answer21
viewsVariable-8 error with Cache::Remember() function
My application is returning an error while storing the cache, I saw it was saving, but it is returning this error. Can anyone tell me why? Here is my function and error: function that returns error:…
-
0
votes1
answer72
viewsFailed to parse time no eloquent
I have the following code: select('id','title', 'description', 'author', DB::raw("DATE_FORMAT(created_at,'%d/%m/%Y') AS created_at"))->get(); when I run it returns me the following error: erro":…
-
-1
votes1
answer36
viewsValidation Unique PUT and POST UNIQUE in REQUEST Laravel
I have a problem validating the Unique field. My problem before was q if I was going to update the value I didn’t edit, because I was accusing q the value was Japanese, I solved it, but now it…
-
-1
votes1
answer30
viewsError Call to a Member Function store() on string - image upload error
I’m trying to make a upload of images using the public function create, but when I try to send the form to register the error appears: Error Call to a Member Function store() on string Does anyone…
-
-1
votes1
answer89
views$imoveis is Undefined, indefinite variable in Blade
The variable $imoveis in Blade is undefined, for me it is correct in the code. @extends('layouts.main') @section('title', 'Web Room') @section('content') <h1>Imoveis web</h1> <div…
-
-1
votes1
answer86
viewsCustomizing Standard Login Error Message - Jetstream
I’m starting my studies with Laravel. I’m using version 8 with Jetstream with Livewire for user authentication. However, I couldn’t figure out how to change the Jetstream standard error message…
-
-1
votes1
answer27
viewsLaravel 8 - bootstrapswitch - Change output before sending to Bank
Next people I’m new to Laravel and I’m half crazy with that kkk Help I am sending a Form to my Database and using a bootstrapswitch checkbox. Follow my INPUT: <div class="col-md-12 col-xs-12">…
php javascript laravel-eloquent laravel-blade laravel-8asked 3 years, 7 months ago Isac Bandeira 11 -
-1
votes1
answer26
viewsSubmit button only works on second click - Laravel 8
I am working with Laravel 8, but I am very new still in this framework, and I came across a problem that is a Ubmit button that only sends my request in the second click, in the first it just…
-
-1
votes0
answers7
viewsHow do I blur the table "X" act when saving Document in Table "Y"?
I need that when saving a subject to a student, the request for said subject is deleted. i access requests through the Solicitudcontroller public function solicitudes() {…
-
-2
votes1
answer23
viewsLaravel - Use JOIN + COUNT
I have two tables, one for users (users) and another for companies (Companies). I need to select the data of each company and know the amount of users per company. This select in mysql works the way…