This Demonstration is using Laravel version 9.x released on Feb 8th, 2022. And it requires php version 8.0-8.1. Since upcoming Laravel 10 will support php version 8.1 and above, my advise is sticking to minimum php version 8.1 whenever possible.
This repository is created using following commands:
-
Create the laravel project
composer create-project laravel/laravel="9.*" laravel-hello-world
-
Initialize local repo and push to gitlab server
git config --global user.name "Nothingcool"
git config --global user.email "me@nothing.cool"
git init
git remote add origin https://github.com/nothingcool/laravel-hello-world.git
git add .
git commit -m "Initial commit"
git push -u origin master