I'm trying to get current url in laravel without any parameters or query parameters, let's assume I've this route in the api.php file:
test/{id}/get-test-data/{type}
and the url is
test/395/get-test-data/temp
I need to log this basic url in the middle-ware test/{id}/get-test-data/{type}
and not the one with parameters,
I've tried this
$route = \Route::current();
$route->uri;
it worked, but when the endpoint being hit the middle-ware print the $route->uri twice as the following
test/395/get-test-data/temp
test/{id}/get-test-data/{type}
is there any way to avoid printing the first line?
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire