I\'m building a laravel application where I want to keep track of client browser details such as browser name. How do I do it using Laravel ?
public function
I ended using the faster, and simpler way:
$request->header('User-Agent');
Hope it helps someone!