=================================================
This is a responsive demo pizza delivery web application written in PHP, using the Laravel Framework.
To run this project you must have PHP 8 and MySql (or any other laravel supported dbms) installed as prerequisites.
Begin by cloning this repository to your machine and install all Composer dependencies.
git clone https://github.com/armino-dev/pizzahub.git
cd pizzahub && composer install
composer dump-autoload
php artisan key:generateNext, create a new database and reference its name and credentials within the project's .env file.
For example:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=pizzahub
DB_USERNAME=pizzahub
DB_PASSWORD=pizzahub
Perform database migration and seed.
php artisan migrate
php artisan db:seedCompile javascript and css assets.
Run npm run dev for development or npm run prod on production environment.
php artisan serve