sohelamin / crud-generator

Laravel CRUD Generator
https://packagist.org/packages/appzcoder/crud-generator
MIT License
1.41k stars 426 forks source link

How I create a view with reference in two tables #257

Closed andreabreu76 closed 2 years ago

andreabreu76 commented 4 years ago

Hi, very tanks for the work... I genrete CRUD with this command:

php artisan crud:generate pedidos --fields="pedido_ident#integer; pedido_data#date; cliente_id#integer#unsigned; produto_id#integer#unsigned; pedido_status#select#options={"aberto": "Aberto", "aguardando": "Aguardando", "finalizado": "Finalizado"}" --foreign-keys="cliente_id#id#clientes; produto_id#id#produtos" --controller-namespace=Pedidos --route-group=admin --form-helper=html --soft-deletes=yes

How to bring a cliente_name instead of the ID from table cliente when I create view!

My create view command line:

php artisan crud:view Pedidos --fields="pedido_ident#integer; pedido_data#date; cliente_id#integer; produto_id#integer; pedido_status#select#options={"aberto": "Aberto", "aguardando": "Aguardando", "finalizado": "Finalizado"}" --route-group=admin --form-helper=html

Tanks again.