Adjust your header https://laravel.com/docs/8.x/http-tests#customizing-request-headers
with this meta
<meta http-equiv="refresh" content="30" >
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello, I have a web application that shows Registered reservations, but it will shown on a screen that no one uses, so it has to refresh every time by itself, how can I add that in the code?
@othmannl In the layout to head add
<head>
// other code
@stack('meta')
</head>
And where you need it add
@push('meta')
<meta http-equiv="refresh" content="30">
@endpush
Please or to participate in this conversation.