Laravel 6.x 2020 - Part 1: Intro to Laravel and installation

preview_player
Показать описание
A very quick introduction to Laravel 6.x and the installation process. We'll get your first Laravel 6.x project up and running.

- Check that you have the latest version of PHP installed on your computer.
- It must be greater than 7.2.0.
- Open terminal to get the Laravel installation tool.
- Type in composer global require laravel/installer
- Type in laravel to verify installation.
- Navigate to a directory on your computer where you want to install your project on your terminal.
- Run the following command: laravel new project_name (replace project_name with your project name).
- Once complete, cd into your new project.
- Type the following command: php artisan serve.
- You’ll get a message like the following if it’s running successfully:
- If it’s not running successfully, then you probably don’t have the correct version of PHP installed. Verify it by typing in php -v inside your terminal and make sure it’s greater than 7.2.0.

--
Dino Cajic
YouTuber, Author, and Head of IT

My Book
An Illustrative Introduction to Algorithms
Рекомендации по теме
Комментарии
Автор

Happy New year Dino, been reading your articles on Medium on PHP and Laravel. Thank you very much for that. I am a junior Dev and use PHP and Laravel. Wanted to know if you will be updating your tutorials?

rufaro