Laravel
Framework ActifFramework PHP élégant et expressif.
php artisan route:list --method=GET
Filtre l'affichage des routes par méthode HTTP.
php artisan schedule:work
Lance un process qui exécute le scheduler toutes les minutes.
php artisan make:notification NomNotification
Génère une Notification (email, SMS, etc.).
composer require laravel/passport && php artisan passport:install
Installe et configure OAuth2 avec Laravel Passport.
php artisan make:model NomModel -mcr
Génère Model, migration, controller resource en une commande.
php artisan db:show
Affiche les informations sur la base de données connectée.
php artisan make:migration create_nom_table_table
Génère un fichier de migration.
php artisan make:command NomCommand
Génère une commande Artisan personnalisée.
php artisan make:controller NomController --resource
Génère un Controller avec les méthodes CRUD complètes.
php artisan telescope:prune
Supprime les anciennes entrées Telescope.
À propos
Framework PHP élégant et expressif.