System Requirements
- PHP >= 8.3
- Composer
- Node.js & NPM (for asset compilation)
- MySQL or PostgreSQL
Installation Steps
1
Install dependencies
composer install
npm install
npm install
Basic Configuration
1
Create environment file
cp .env.example .env
2
Generate application key
php artisan key:generate
3
Configure database in .env file
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
Note: Make sure you have created the database before running the migration
Basic Usage
1
Run migration
php artisan migrate
2
Run seeder
php artisan db:seed DatabaseSeeder
php artisan db:seed SignIPASeeder
php artisan db:seed SignIPASeeder
3
Start development server
php artisan serve
Information about 2 Panels:
Admin Panel:
User Panel:
Admin Panel:
URL: url/admin
Email: [email protected]
Pass: password
User Panel:
URL: url/user
Email: [email protected]
Pass: password