Level 10
@ajvanho you can use livewire offline states
https://laravel-livewire.com/docs/2.x/offline-state
<div wire:offline>
You are now offline.
</div>
3 likes
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I make contact form, and want to user send post and email, only if have internet connection.
How to check internet connection?
Normally i test this on the client side
yourapp.js
if(window.navigator.onLine){
//has internet connection
}
Please or to participate in this conversation.