Palzin Track
Get 15% off with code PTRACKSIGNUP15 

Laravel Diary Logo

Laravel Router Helper Function: delete

The delete function is used to register a route with the router that will respond to the DELETE HTTP verb. You provide the $uri 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. You can also use the Route facade or resolve the router...