An example app for fielding questions from your audience.
After cloning this repo, run the following commands from your project root:
cp .env.example .env
composer install
php artisan key:generate
touch database/database.sqlite
php artisan migrate --seed
php artisan flux:activate
npm install
npm run dev
Now, open the project in your browser (Typically http://podium.test
) and use the following credentials to log in:
User: [email protected]
Pass: password
These are the key files to reference in this project:
podium/
├── routes/
│ └── web.php # Main web routes
│
└── resources/
└── views/
├── dashboard.blade.php # Question dashboard page
└── livewire/
└── question/
├── show.blade.php # Question list item
└── create.blade.php # Create question button & modal