Laravel Instalation
Create a new Laravel project using
Composer: composer create-project –prefer-dist laravel/laravel kanban.loc
If the project is local, create or modify the .htaccess file with the following lines
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^public
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>