fix: standardize language to English in README and AlertSettings

feat: add 24 model factories for Help, Shop, Community, Game, User domains

- Translate mixed Dutch/English strings in README.md and AlertSettings.php
- Add HasFactory trait to 23 models
- Create factories for Help (6), Shop (4), Community (5), Game (2), User (7)
This commit is contained in:
root
2026-05-23 16:57:44 +02:00
parent 33c03e8b7b
commit 574b5d6e17
49 changed files with 647 additions and 27 deletions
+21 -21
View File
@@ -229,10 +229,10 @@ The following optimizations are already configured:
```bash
# Build
yarn build # Bouw alle thema's
yarn build:atom # Bouw alleen atom theme
yarn build:dusk # Bouw alleen dusk theme
yarn build:all # Bouw beide thema's
yarn build # Build all themes
yarn build:atom # Build atom theme only
yarn build:dusk # Build dusk theme only
yarn build:all # Build both themes
# Development
yarn dev # Start dev server
@@ -243,20 +243,20 @@ yarn lint # Check JS/Vue
yarn lint:fix # Fix JS/Vue
yarn lint:css # Check CSS
yarn lint:css:fix # Fix CSS
yarn lint:all # Check alles
yarn lint:fix:all # Fix alles
yarn lint:all # Check everything
yarn lint:fix:all # Fix everything
yarn format # Formatteer alles
yarn format # Format everything
yarn format:check # Check formatting
# Check
yarn check # Volledige check
yarn check # Full check
yarn check:php # Check PHP syntax
yarn check:security # Check beveiliging
yarn check:deps # Check verouderde packages
yarn check:security # Check security
yarn check:deps # Check outdated packages
# Cache
yarn clean # Verwijder cache
yarn clean # Clear cache
yarn rebuild # Clean + install + build
```
@@ -269,7 +269,7 @@ php artisan atom:fix-code
# Fix gamedata symlinks (run after installing client assets)
php artisan atom:fix-gamedata-symlinks
# Static analysis (PHPStan Level 9)
# Static analysis (PHPStan Level 3)
./vendor/bin/phpstan analyse
# Build frontend assets
@@ -286,19 +286,19 @@ yarn format
---
## ⚡ Performance Optimalisaties
## ⚡ Performance Optimizations
Deze CMS is volledig geoptimaliseerd:
This CMS is fully optimized:
| Optimalisatie | Beschrijving |
| Optimization | Description |
| ---------------------- | --------------------------------- |
| **Vite 8** | Snelste build tool |
| **esbuild** | Snellere minificatie |
| **Better chunking** | Optimalere code splitting |
| **Gzip + Brotli** | Compressie (~70% kleiner) |
| **Vite 8** | Fastest build tool |
| **esbuild** | Faster minification |
| **Better chunking** | Optimal code splitting |
| **Gzip + Brotli** | Compression (~70% smaller) |
| **Resource hints** | DNS prefetch, preconnect, preload |
| **HTTP/2** | Snellere netwerk requests |
| **Console verwijderd** | Kleinere JS bestanden |
| **HTTP/2** | Faster network requests |
| **Console removed** | Smaller JS bundles |
| **Caching** | Vite cache + optimizedeps |
---