There might be a case that the same variable should be passed to all Blade templates. It can be done on each controller. However, it is not a perfect solution...
By default, in Laravel application Blade templates are stored in the resources/views directory. There might be required to store the Blade templates in different location. This tutorial shows how to...
When implementing authentication in a web application, we may need to check whether the user's password matches a given hash. This tutorial shows example how to verify that password matches...
When implementing authentication in a web application, we may need to hash the user's password. This tutorial shows example how to generate the password hash in Laravel 9 application.
Laravel...
When working with Laravel application, there might be required to get the ID for the current session. This tutorial provides 2 methods how to get session ID in Laravel 9...
Laravel framework has a debug mode that helps to debug application during development. Debug mode determines what information can be displayed to the user when an error occurs.
This tutorial...
In some applications can be required to define routes which can be accessed only if debug mode is enabled. These routes can be used for testing or development purpose.
This...
Most of the time web applications requires that error page should be styled differently than default error page provided by Laravel framework. This tutorial provides example how to create custom...
When implementing a web application, we may need to check whether a route exists. This tutorial provides example how to do it in Laravel 9 application.
We can use the...
By default, Laravel framework has three environments: local, production and testing. This tutorial provides 2 methods how to get environment name in Laravel 9 application.
The APP_ENV variable allows to...