Alice Dudedji
Membre depuis March 2026
Génère un Resource pour une collection de modèles.
php artisan make:resource NomResourceCollection --collection
Génère un Listener lié à un Event.
php artisan make:listener NomListener --event=NomEvent
Génère une bibliothèque réutilisable dans le workspace.
ng g library nom-lib
Génère un Cast personnalisé pour les attributs Eloquent.
php artisan make:cast NomCast
Met à jour toutes les dépendances vers leurs dernières versions compatibles.
flutter pub upgrade
Génère un Contract/Interface (Laravel 11+).
php artisan make:interface NomInterface
Génère un composant Blade avec sa classe et sa vue.
php artisan make:component NomComponent
Affiche les informations du modèle (colonnes, relations, scopes).
php artisan model:show NomModel
Génère un Job exécuté de façon synchrone.
php artisan make:job NomJob --sync
Génère un composant dans un chemin précis.
ng g c features/auth/login
Génère le code en écrasant les fichiers en conflit.
dart run build_runner build --delete-conflicting-outputs
Génère une Notification (email, SMS, etc.).
php artisan make:notification NomNotification
Génère Model, migration, controller resource en une commande.
php artisan make:model NomModel -mcr