/laravel-primi-passi

Boolean Class 104 exercise: Laravel Primi Passi

Primary LanguagePHP

Laravel Logo

Create new Laraval 10 Project:

composer create-project laravel/laravel [folder-name]

...or use Composer installer:

laravel new [folder-name] --git (<- Use the last command to automatically initialize a local git repo)

Manually initialize the repo:

Head to the project directory

cd [folder-name]

Initialize a local repo

git init

Add all files to stage area

git add .

First commit and message

git commit -m"initial commit"

Push to a remote repo:

git remote add origin [repolink.git]

git branch -M main

git push -u origin main