Custom add Inventory on Product Page
-
Hi guys,
Does anyone knows where does this inventory input type
of this admin page go? i need to make a new input inventory field which allow the user to fill in the number of new items and the field will add to the existing inventory.
Thanks!
-
Hi @Luke
Just override the blade file in another package and create your input field.
Use view render event to call your blade file that you've overridden.
Also, you will need to add the Migration with proper Model, controller and routes to handle your request.
Thanks.