Ta mémoire technique
collaborative
Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.
Génère un Listener lié à un Event.
php artisan make:listener NomListener --event=NomEvent
Génère un Job exécuté de façon synchrone.
php artisan make:job NomJob --sync
Génère un fichier de migration.
php artisan make:migration create_nom_table_table
Génère un Observer pour les événements Eloquent.
php artisan make:observer NomObserver --model=NomModel
Génère une migration pour modifier une table existante.
php artisan make:migration add_colonne_to_table_table --table=table
Génère une commande Artisan personnalisée.
php artisan make:command NomCommand
Génère un Service Provider.
php artisan make:provider NomServiceProvider
Génère une règle de validation personnalisée.
php artisan make:rule NomRule
Génère un Eloquent Scope réutilisable.
php artisan make:scope NomScope
Génère un Cast personnalisé pour les attributs Eloquent.
php artisan make:cast NomCast
Génère une classe Exception personnalisée.
php artisan make:exception NomException
Génère un Contract/Interface (Laravel 11+).
php artisan make:interface NomInterface
Top commandes
Explorer par technologie
Des commandes à partager ?
Rejoins la communauté et partage tes solutions avec d'autres développeurs.
Créer mon compte