Call a function multiple time and get all value as single list php

399 Views Asked by At

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"
];
1

There are 1 best solutions below

1
On

You can use this script to get all routes keyed by their url.

$routes = collect(Route::getRoutes())->mapWithKeys(function ($route) {
    return [$route->uri => $route->action['uses']];
})->toArray();

dd($routes);