446 commandes partagées

Ta mémoire technique
collaborative

Ne perds plus jamais une commande. Recherche, copie et partage tes solutions techniques en quelques secondes.

CodeBox
446 Commandes
22 Développeurs
99 Technologies

36 résultat(s) pour "make"

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

bash
php artisan make:notification NomNotification

Génère une classe Mailable.

bash
php artisan make:mail NomMail

Génère un Observer pour les événements Eloquent.

bash
php artisan make:observer NomObserver --model=NomModel

Génère une commande Artisan personnalisée.

bash
php artisan make:command NomCommand

Génère un Service Provider.

bash
php artisan make:provider NomServiceProvider

Génère un fichier de migration.

bash
php artisan make:migration create_nom_table_table

Génère un Job pour les queues.

bash
php artisan make:job NomJob

Génère un Eloquent Model.

bash
php artisan make:model NomModel

Génère un canal de broadcasting.

bash
php artisan make:channel NomChannel

Génère une règle de validation personnalisée.

bash
php artisan make:rule NomRule

Génère un Eloquent Scope réutilisable.

bash
php artisan make:scope NomScope

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

bash
php artisan make:cast NomCast

Génère une classe Exception personnalisée.

bash
php artisan make:exception NomException

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

bash
php artisan make:interface NomInterface

Génère un Enum PHP 8.1+ (Laravel 11+).

bash
php artisan make:enum NomEnum