I'm displaying a Table from a Database like so
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td>{{ $user->... }}</td>
<td></td>
</tr>
If something changes in the Database I have to hit F5 in the Browser to Display the changes. Now I want to refresh the Page with Javascript, each time something changes in the Database. I don't want to refresh the page on a time intervall.
I have an Admin who can change someones Status and you can change your status yourself. When someone changes his own status the Admin Backend should refresh.
Do you guys have any ideas on that?