@extends('admin.layouts.master') @section('content')

Staff List

@csrf
 
 
@forelse($userList as $user) @empty @endforelse
Username Email Joined Type Status
{{ $user->name }} {{ $user->email }} {{ $user->created_at }} {{ $user->type }}
[ {{ $user->branch->name }} ]
@if($user->status == 'Active') Active @else Inactive @endif
No Information
{{ $userList->appends(['search'=>request()->search])->links() }}
@endsection