Fix todo due date also counting completed items

This commit is contained in:
2026-03-04 14:43:01 +01:00
parent 8ff955415c
commit 4ee1d01e38
4 changed files with 21 additions and 7 deletions
+7 -3
View File
@@ -91,15 +91,19 @@ ### Steps
cp .env.example .env
sudo php artisan key\:generate
```
5. Run migrations and seeders:
5. Create a symbolic link for public storage
```bash
sudo php artisan storage:link
```
6. Run migrations and seeders:
```bash
sudo php artisan migrate --seed
```
6. Build frontend assets:
7. Build frontend assets:
```bash
npm run build
```
7. Start the development server:
8. Start the development server:
```bash
php artisan serve
```