Laravel Valet is a development environment for macOS that runs Laravel applications using Nginx and DnsMasq. It provides a minimalist, lightweight alternative to virtual machines or Docker for local development.
Valet was introduced to streamline local development for Laravel projects, especially for macOS users, by eliminating the overhead of traditional virtualized environments.
Install Valet:
composer global require laravel/valet
valet install
Park your project:
cd ~/Sites
valet park
Access your project at http://your-project.test
. Laravel Valet provides a fast, efficient, and minimalist local development environment for macOS.