### What happened? Hello, The Windows logo is not showing in the Operating System Card. That is caused because the trait that capture and save the informations here : https://github.com/me-shaon/laravel-request-analytics/blob/main/src/Traits/CaptureRequest.php#L128 are saving `Windows 10`, `Windows 7` etc and the service that display it does not match the saved OS, only `windows` : https://github.com/me-shaon/laravel-request-analytics/blob/main/resources/views/components/analytics/operating-systems.blade.php#L10 Actually, I have bypass this issue with this code in https://github.com/me-shaon/laravel-request-analytics/blob/main/resources/views/components/analytics/operating-systems.blade.php#L10 ```php $os = str_replace(' ', '', strtolower($os)); $os = str_starts_with($os, 'windows') ? 'windows' : $os; ``` ### How to reproduce the bug Visit the page with a windows OS. ### Package Version 1.3.0 ### PHP Version 8.4 ### Laravel Version 12.28.1 ### Which operating systems does with happen with? Windows ### Notes <img width="732" height="361" alt="Image" src="https://github.com/user-attachments/assets/57ef53d9-2000-472d-8c50-0037e1652347" />
What happened?
Hello,
The Windows logo is not showing in the Operating System Card.
That is caused because the trait that capture and save the informations here : https://github.com/me-shaon/laravel-request-analytics/blob/main/src/Traits/CaptureRequest.php#L128 are saving
Windows 10,Windows 7etc and the service that display it does not match the saved OS, onlywindows: https://github.com/me-shaon/laravel-request-analytics/blob/main/resources/views/components/analytics/operating-systems.blade.php#L10Actually, I have bypass this issue with this code in https://github.com/me-shaon/laravel-request-analytics/blob/main/resources/views/components/analytics/operating-systems.blade.php#L10
How to reproduce the bug
Visit the page with a windows OS.
Package Version
1.3.0
PHP Version
8.4
Laravel Version
12.28.1
Which operating systems does with happen with?
Windows
Notes