@extends('layouts.app') @section('content')

Staff List

Selected
@if (!empty($staffs) && $staff->count()) @foreach ($staffs as $key => $staff) @endforeach @else @endif
Id User Phone Status Action
{{ $staff->user_no }} @if ($staff->image == null)
@else
@endif
{{ $staff->name }} {{ $staff->email ?? '-' }}
{{ $staff->phone ?? '-' }}
@if ($staff->status === null) Pending Verification @elseif ($staff->status === 0) Inactive @else Active @endif
No matching records found
{{ $staffs->links() }}
@endsection @push('script') @endpush