composer install
cp .env.example .env
Edit the .env file to configure your environment variables (database, app key, sessions, etc.):
php artisan key:generate
npm install
npm run dev
mysql -u root -p
CREATE DATABASE wizardForm CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
exit
Open your command prompt (cmd).
Navigate to the project directory, for example:
cd path\to\your\project
mysql -u root -p wizardForm < dump.sql
php artisan db:seed
php artisan storage:link
php artisan app:default-image
php artisan serve
Project will be accessible at: http://localhost:8000
The database contains a default admin user seeded with email: admin@gmail.com and password: 12345.
You can access the admin login page at: http://localhost:8000/login