Last active
October 16, 2018 13:10
-
-
Save shabaz-ejaz/a2e607cbf37c8b390a634a7293c7e214 to your computer and use it in GitHub Desktop.
Laracogs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://laracogs.com/docs/services/crud/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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