@extends('layouts.admin') @section('title','Cashiers') @section('breadcrumb')@endsection @section('admin-content')

Cashiers

Add Cashier
@forelse($cashiers as $c) @empty @endforelse
#NameCodeEmailPhoneInstituteStatusActions
{{ $loop->iteration }} {{ $c->name }} {{ $c->cashier_code }} {{ optional($c->user)->email }} {{ $c->phone ?? '-' }} {{ optional($c->institute)->name ?? 'All' }} {{ $c->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
No cashiers found.
{{ $cashiers->links() }}
@endsection @push('scripts')@endpush