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 a newbie at this and im trying to set laravel sail to my laptop using ubuntu terminal. there's no problem in installation but when i use the command sudo ./vendor/bin/sail up i get this error: Error response from daemon:…
Currently i am facing an issue with my desired CSS effects. So currently the problem i am facing is that i have a navbar toggle which is in the color black, when i click on the navbar toggle i want…
I try to add https://github.com/webbingbrasil/filament-maps package into my fresh laravel 11 site, but I have some problems installing the package. I tried to install it with fixing error by hints hoster@hoster-local:projectPath$ composer require webbingbrasil/filament-maps ./composer.json has been updated Running composer…
My Laravel code works fine but the PHP Intelephense extension shows unnecessary error in the code. If I delete the extension, the error goes away and reappears when I reinstall it. It also shows some errors in the Laravel helpers.php…
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 have Users. Some users (admins) manage accounts, defined via a account_user pivot table (account_id | admin_id). Some of these admins manage other "sub-users", defined via a user_management pivot table (account_admin_id | end_user_id). #1) I need to create an Eloquent…
I want to embed a pdf from storage into a view/iframe. The storage is private and I can't permanently store the files on public folder. Is there any way to accomplish this? Now the users need to see the pdf…
I am using model binding in a route and I want to handle the case where an id is missing from the database. According to the documentation you can use the missing method to handle this possibility. Is it possible…
I have set the connection to two databases properly. I also have created eloquent table models and I can query a single table relationship from another database easily e.g. $user->customer User model class User extends Model { protected $connection =…