Closed andreabreu76 closed 2 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.
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.