I am making an application in laravel 5.4 that the administrator modifies various information of a particular client.
Example: Click on Modules in the client list
Theuserisdirectingtoanotherpage,whichisenvironmentthatwilllist,modify,etc.Allinformationforeachmoduleofthisclient.
But my problem is that I'm having to spend ID
of the client on all pages, by URL .
Example:
admin / modules / 1 / financial / data the '1' is the customer ID.
Or
admin / modules / 1 / provider / data is the customer ID .
I would try to use laravel Service Container , but I could not figure out how to do this in my application.