Skip to content

Instantly share code, notes, and snippets.

@mariapaulinar
Last active January 15, 2019 16:50
Show Gist options
  • Save mariapaulinar/e490cfe437fc562e88ee7e84fb103ea7 to your computer and use it in GitHub Desktop.
Save mariapaulinar/e490cfe437fc562e88ee7e84fb103ea7 to your computer and use it in GitHub Desktop.
Comandos Artisan
Crear un controlador:
php artisan make:controller NombreControladorController
Crear un modelo:
php artisan make:model NombreModelo
Crear un request
php artisan make:request NombreRequest
Crear una migración:
php artisan make:migration nombre_migracion
Limpiar el caché de Laravel:
php artisan cache:clear
Correr migraciones de un path específico:
php artisan migrate --path=/database/migrations/folder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment