35 commande(s) avec le tag #make
Commandes partagées par la communauté CodeBox, copiables en un clic.
Génère un Cast personnalisé pour les attributs Eloquent.
php artisan make:cast NomCast
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
Génère un Job exécuté de façon synchrone.
php artisan make:job NomJob --sync
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
Génère un fichier de migration.
php artisan make:migration create_nom_table_table
Génère une commande Artisan personnalisée.
php artisan make:command NomCommand
Génère un Controller avec les méthodes CRUD complètes.
php artisan make:controller NomController --resource
Génère un Model et sa migration associée.
php artisan make:model NomModel -m
Génère un Service Provider.
php artisan make:provider NomServiceProvider