getRoutesByName() as $route) { $list[] = $route->action; } return $list; } public function get(Grid\Model $model) { $list = []; $routes = \Illuminate\Support\Facades\Route::getRoutes(); foreach ($routes->getRoutes() as $route) { $list[] = $route->action; } return $list; } }