Palzin Track
Get 15% off with code PTRACKSIGNUP15 

Laravel Diary Logo

Laravel Router Helper Function: put

The put function is used to register a route that responds to the PUT HTTP verb. You provide the URI of the route and the action that will be executed when the route is matched. The action can be a closure or a mapping to a controller method. The function returns an instance of \Illuminate\Routing\Route. You can also use the...