Emmanuel Morales Posted on Sep 23, 2022 5 1 Installing Laravel in Mac (M1) Pre-Requisites I'll use Homebrew as the package manager. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" Enter fullscreen mode Exit fullscreen mode Installing PHP and componser Install php: brew install php Enter fullscreen mode Exit fullscreen mode Install composer: brew install composer Enter fullscreen mode Exit fullscreen mode Creating a running a Laravel project Creating the project: composer create-project laravel/laravel app-name Enter fullscreen mode Exit fullscreen mode Running the app project # Change to the project directory: cd <app-name> # Run the server: php artisan serve Enter fullscreen mode Exit fullscreen mode Top comments (0) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)