I have looked around laracast and stack overflow but couldn't find a way to find a user's OS without using some sort of 3rd party tracker.
In codeigniter, it was really simple. How can I get the user OS using Laravel?
Request::server('HTTP_USER_AGENT')
That gets me the entire user agent string. I just want the OS.
Is it possible?