Skip to content

Instantly share code, notes, and snippets.

@anaxamaxan
Created October 23, 2023 21:32
Show Gist options
  • Save anaxamaxan/ecd96674d58477b0299700e6aadd6832 to your computer and use it in GitHub Desktop.
Save anaxamaxan/ecd96674d58477b0299700e6aadd6832 to your computer and use it in GitHub Desktop.
Laravel Route Name from URL
<?php
function routeNameFromUrl(string $url, string $method = 'GET'): ?string
{
$method = strtoupper($method);
$request = app('request')
->create(trim($url), $method);
return app('router')
->getRoutes()
->match($request)
->getName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment