I want to call a method multiple time and get all result as single array or anything . As example laravel Web.php file
<?php
Route::get('/', function () {
return view('welcome');
});
Route::get("test",'HomeController@index');
I want to get result like
$route=[
'/'=>'',
'test'=>"HomeController@index"
];
You can use this script to get all routes keyed by their url.