@extends('layouts.backend') @push('style') @endpush @section('content')

Users List

@if (count($users)) @foreach ($users as $i => $user) @endforeach @else @endif
Phone Number Name Email Status Last OTP Sent At Detail Quiz Response
{{ $user->phone_number }} profilepic)) src="{{ 'https://placehold.co/30x30?text=' . substr($user->name, 0, 1) }}"@else src="{{ $user->profilepic }}" @endif alt="image" /> {{ $user->name }} {{ $user->email }}
{{ date('jS F Y h:i:s A', strtotime($user->lastOtp->updated_at)) }} View User View Quiz Response
No Users
@if ($users->appends(request()->query())->count() > 0) {{ $users->appends(request()->query())->links() }} @else {{ $users->links() }} @endif
@endsection