AL

Alice Dudedji

Membre depuis March 2026

105 commande(s)
15,725 copie(s)
10 tag(s)
Flutter Ajouter Bloc

Ajoute flutter_bloc pour la gestion d'état BLoC.

bash
flutter pub add flutter_bloc

Génère un Resource pour une collection de modèles.

bash
php artisan make:resource NomResourceCollection --collection

Génère un Listener lié à un Event.

bash
php artisan make:listener NomListener --event=NomEvent

Formate tout le code Dart du projet.

bash
dart format .

Génère une bibliothèque réutilisable dans le workspace.

bash
ng g library nom-lib

Génère un Cast personnalisé pour les attributs Eloquent.

bash
php artisan make:cast NomCast

Met à jour toutes les dépendances vers leurs dernières versions compatibles.

bash
flutter pub upgrade

Génère un Controller vide.

bash
php artisan make:controller NomController

Affiche le taux de couverture des tests.

bash
php artisan test --coverage

Génère un Contract/Interface (Laravel 11+).

bash
php artisan make:interface NomInterface

Génère un interceptor HTTP.

bash
ng g interceptor interceptors/auth

Génère un composant Blade avec sa classe et sa vue.

bash
php artisan make:component NomComponent

Ajoute Provider pour la gestion d'état simple.

bash
flutter pub add provider

Affiche les informations du modèle (colonnes, relations, scopes).

bash
php artisan model:show NomModel

Génère une directive Angular.

bash
ng g directive directives/nom-directive

Génère un Job exécuté de façon synchrone.

bash
php artisan make:job NomJob --sync

Génère un composant dans un chemin précis.

bash
ng g c features/auth/login

Génère le code en écrasant les fichiers en conflit.

bash
dart run build_runner build --delete-conflicting-outputs

Génère une Notification (email, SMS, etc.).

bash
php artisan make:notification NomNotification

Génère Model, migration, controller resource en une commande.

bash
php artisan make:model NomModel -mcr