Follow these steps to install and set up the Laravel project after cloning it from the repository.
git clone https://github.com/fedenuche/filament-bug-with-repeater
cd filament-bug-with-repeater
composer install
cp .env.example .env
Then, update the .env
file with your database credentials:
DB_HOST=127.0.0.1
DB_DATABASE=your_database_name
DB_USERNAME=your_username
DB_PASSWORD=your_password
php artisan key:generate
Run the migrations:
php artisan migrate --seed
npm install
npm run dev # or npm run build for production
php artisan serve
Visit: http://localhost:8000
🎉 Your Laravel project is now set up and running! 🚀
Go to the dashboard User: [email protected] Password: password
Edit any lesson, for example the lesson one
Using the repeater add more than one vocabulary and press save.
Only one of them will be shown!