Ninja is a build system that allows to build binaries from source code. It can be used as alternative to the Make. Ninja is focused on speed. To achieve high...
The wttr.in is a weather forecast service that allows to view the weather forecast via command line. You don't need to install wttr.in in your system. All you need to...
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...
Hyperfine is a tool that enables to benchmark commands. This tool runs command several times and measures execution time of it.
This tutorial demonstrates how to install Hyperfine on Ubuntu...
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...
The yt-dlp is a command line tool for downloading videos from YouTube and other websites. The yt-dlp is based on youtube-dl and offers additional features. The list of all the...
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...