Installation Steps

  1. Install project dependencies using Composer:
composer install
  1. Create a .env file by copying the example:
cp .env.example .env
  1. Generate a unique application key:
php artisan key:generate
  1. Create a SQLite database:
touch database/database.sqlite
  1. Run migrations and seed the database:
php artisan migrate:fresh --seed
  1. Create a symbolic link for storage:
php artisan storage:link
  1. Start the development server:
php artisan serve
  1. Open your browser and go to http://127.0.0.1:8000 to access the application.