- PHP >= 7.3
(Assuming you've installed Composer)
Fork this repository, then clone your fork, and run this in your newly created directory:
composer installNext you need to make a copy of the .env.example file and rename it to .env inside your project root.
Run the following command to generate your app key:
php artisan key:generateRun the database migrations (Set the database connection in .env before migrating)
php artisan migrateThen start your server:
php artisan serveYou can now access the server at http://127.0.0.1:8000
To see all defined routes and corresponding controllers methods use php artisan route:list console command
