Laravel 11 and mailtrap
I have created a Laravel 11 app and I am using mailtrap to send mails and when I send password reset link and verification mail it shows that the mail has been sent yet on the mailtrap inbox it's not…
I have created a Laravel 11 app and I am using mailtrap to send mails and when I send password reset link and verification mail it shows that the mail has been sent yet on the mailtrap inbox it's not…
I'm encountering an issue with Laravel routing in my application. Specifically, I'm getting the following error: Internal Server Error IlluminateRoutingExceptionsUrlGenerationException Missing required parameter for [Route: edit_mahasiswa] [URI: mahasiswa/edit/{id}] [Missing parameter: id]. I have a route defined for editing a Mahasiswa…
I'm trying to make a gate so only some users are authorized to make certain API calls, but before that I have to at least set up a gate properly which I can't seem to do. Here I set up…
How are you guys? In Laravel 11 how many do I try to put sessions for the shop's cart by Api routes, the sessions don't store! Do you Have a solution for it? even in Laravel 11 kernel.php removed! now…
I am trying to set up Laravel 11 on Windows 11. I am using WAMPServer for Apache/PHP/MySql. I have installed the installer globally using Composer. I then run this command to create a Laravel project: laravel new example-app However, when…
I wrote a simple REST API with Laravel 11. I tested authentication and it looks like the token generated by Sanctum is not revoked despite that I delete the way the documentation writes. class TokenController extends Controller { public function…
I have just created a fresh Laravel project and installed Sentry for exception logging. Here is my bootstrap/app.php: <?php use IlluminateFoundationApplication; use IlluminateFoundationConfigurationExceptions; use IlluminateFoundationConfigurationMiddleware; use IlluminateSupportFacadesAuth; use SentryLaravelIntegration; use SentryStateScope; return Application::configure(basePath: dirname(__DIR__)) ->withRouting( web: __DIR__ . '/../routes/web.php', commands:…
I have upgraded my laravel application from 10-11 using Shift. Everything seems fine locally, when I deploy it to Heroku I get this error, I am not using any database in my application: Database file at path [/app/database/database.sqlite] does not…
I am using Laravel 11 for build a application in which a admin panel i have created and created a front-end website. In front-end website a form is exist. when i submit a form than request is not called and…
I am using Laravel 11.8.0 for my web application project and wanted to make an admin page. Therefore, I tried to install laravel-admin. However, it gave me an error saying, "Your requirements could not be resolved to an installable set…