Hey @axtg funny you should mention this, I'm actually working on the exact same thing on the side!
I have a RaspberryPi pulling in weather and temperature data, and sending it over to a Laravel app that was previously using a MySQL database as the main time-series store. Problem is, it got big fast lol.
I also looked into InfluxDB, and while I don't have any personal resources for you, I do have these bookmarked to help me when I make the switch, and it might help you too:
- https://github.com/influxdata/influxdb-php
- https://www.influxdata.com/blog/getting-started-php-influxdb/
- https://github.com/tray-labs/laravel-influxdb (though this is just a wrapper for the influxdb-php lib)
Anyway, you can definitely use it with a Laravel project! I was torn between this or Redis (since it's baked into Laravel already), but support for time series with it is a little iffy.