@extends('layouts.admin')
@section('title','Cashiers')
@section('breadcrumb')
Cashiers@endsection
@section('admin-content')
| # | Name | Code | Email | Phone | Institute | Status | Actions |
@forelse($cashiers as $c)
| {{ $loop->iteration }} |
{{ $c->name }} |
{{ $c->cashier_code }} |
{{ optional($c->user)->email }} |
{{ $c->phone ?? '-' }} |
{{ optional($c->institute)->name ?? 'All' }} |
{{ $c->is_active ? 'Active' : 'Inactive' }} |
|
@empty
| No cashiers found. |
@endforelse
{{ $cashiers->links() }}
@endsection
@push('scripts')@endpush