I'm working with Laravel 5.4 and I have a list of users in admin panel I want to add search box in top of my users list to search them and I want to results be live (when typing words results shows) I guess should use Ajax for that(not sure!)
Let say this is my users list code:
@foreach ($users as $user)
<td>{{ $user->first_name }}</td>
<td>{{ $user->last_name }}</td>
<td>{{ $user->username }}</td>
<td>{{ $user->email }}</td>
@endforeach
How can I get that search to work with it?
Should I install any plugin or just use Vue.Js or ...?
Thanks.