Laravel obtenga el segmento de URL
{{ Request::segment(1) }}
Cute Coyote
{{ Request::segment(1) }}
$uri_path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
$uri_segments = explode('/', $uri_path);
echo $uri_segments[0]; // for www.example.com/user/account you will get 'user'
{{ Request::segment(1) }}