Skip to content

Instantly share code, notes, and snippets.

@dillingham
Last active November 13, 2018 16:52
Show Gist options
  • Save dillingham/4c58a10127323c58010f74e969c7accd to your computer and use it in GitHub Desktop.
Save dillingham/4c58a10127323c58010f74e969c7accd to your computer and use it in GitHub Desktop.
nova alias for model, migration, resource & policy

nova bash alias

$ supernova Post

model, migration, resource, policy created!

supernova() { 
    php artisan make:model "$1" -m; 
    php artisan nova:resource "$1";
    php artisan make:policy "$1";
}

add ^ to your .bashrc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment