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

All Branch Staff Add Branch Staff

@csrf
 
 
@forelse($branchStaffList as $key=>$branchStaff) @empty @endforelse
Id Name Email Phone Branch Status Action
{{ $key+1 }} {{ $branchStaff->name }} {{ $branchStaff->email }} {{ $branchStaff->phone }} {{ $branchStaff->branch->name }} @if($branchStaff->status == 'Active') Active @else Inactive @endif
No Information
{{ $branchStaffList->appends(['search'=>request()->search])->links() }}
@endsection