This is a typical Blog made with Laravel framework. It is my first project with Laravel; I hope to learn a lot doing it 😃
sudo apt install php
sudo apt install php-zip
sudo apt install php-json
sudo apt install php-dom
sudo apt install php-mbstring
sudo apt install composer
composer global require laravel/installer
In my case, I use Zsh.
gedit .zshrc
Add the route .config/composer/vendor/bin/
to the path.
# If you come from bash you might have to change your $PATH.
export PATH=.config/composer/vendor/bin/:$HOME/bin:/usr/local/bin:$PATH
Reload .zshrc
.
source .zshrc
laravel new laravel-blog
cd laravel-blog
php artisan serve