Phillip Madsen

Results 27 issues of Phillip Madsen

## EXAMPLE USER CRUD WITH MULIPLE TABLES ``` jason [ { /* (leave this blank if only need one table by default, but if this model needs more then one...

such as ``` bash php artisan mitul.generator:scaffold_api User --fieldsFile="user.json" --rememberToken Role --fieldsFile="roles.json" Permission --fieldsFile="permissions.json" :pivot: Role, User, Permission --softDelete --paginate=25 ``` 1. **php artisan mitul.generator:scaffold_api** 2. **User --fieldsFile="user.json" --rememberToken** 3....

I am looking through your docs and I do not see the option for rememberToken, enum and select? Is this an option or can you tell me the way do...

enhancement

The ability to chain more complex builds. Here is an example: php artisan mitul.generator:scaffold_api Product --fieldsFile="product.json" User --fieldsFile="user.json" Category --fieldsFile="category.json" Page --fieldsFile="page.json" Article --fieldsFile="article.json" --softDelete --paginate=25

You should use the info from the fields that are entered in the creation to generate a fields file and also to make one from existing db table like your...

add a option or line to the fields-file if you want it to be included in the table view. "field":"title:string", "type":"text", "inTableView":"false", "validations": "required" That way it will not try...

feature

like the one pingpong generator has? If not how hard would it be to add it or create it?

enhancement

1st: Can you tell me how I can add the file upload for images to another model and use it. such as a image for the pages, or user. 2nd:...

## Create a plan of whole build before hand. The whole output of crud could be put in instructions in the config file as well as the artisan commands. with...

feature

Would it possible to generate a crud using multiple tables in the same one? Here is an example. - CRED = BLOG - TABLES= - POSTS - CATEGORIES - TAGS...

feature