Skip to content

Instantly share code, notes, and snippets.

@shabaz-ejaz
Last active October 16, 2018 13:10
Show Gist options
  • Select an option

  • Save shabaz-ejaz/a2e607cbf37c8b390a634a7293c7e214 to your computer and use it in GitHub Desktop.

Select an option

Save shabaz-ejaz/a2e607cbf37c8b390a634a7293c7e214 to your computer and use it in GitHub Desktop.
Laracogs
https://laracogs.com/docs/services/crud/
php artisan crudmaker:new Book
--migration
--schema="id:increments,title:string,author:string"
php artisan crudmaker:new Post --api --ui=bootstrap --migration --schema="id:increments,name:string,author:string" --relationships="belongsToMany|\App\Models\Tag|tags"
php artisan crudmaker:new Tag --api --ui=bootstrap --migration --schema="id:increments,name:string,author:string" --relationships="belongsToMany|\App\Models\Post|posts"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment