Pre-Requisites
- I'll use Homebrew as the package manager.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Installing PHP
and componser
brew install php
brew install composer
Creating a running a Laravel project
composer create-project laravel/laravel app-name
# Change to the project directory:
cd <app-name>
# Run the server:
php artisan serve
Top comments (0)