Laravel Router Helper Function: delete
…luminate\Routing\Route . 1 <?php 2 3 // Registering a route with a Closure. 4 delete ( ' route-name ' , function ( ) { 5 // Function logic 6 } ) ; 7 8 // Registering a route mapped to a controller method. 9 delete ( ' route-name ' , '...