@php use App\Models\warehouse; @endphp @extends('admin.layouts.app') @section('title',get_setting('site_name').' Staff Bank Info') @section('content')
@foreach($bank_infos as $key => $staff) @endforeach
# Employee ID {{__('Name')}} {{__('Bank Name')}} {{__('Branch Name')}} {{__('Routing No')}} {{__('Account title')}} {{__('Account No')}} {{__('Options')}}
{{ ($key+1) + ($bank_infos->currentPage() - 1)*$bank_infos->perPage() }} {{$staff->staff?->user?->id ?? 'N/A'}} {{$staff->staff?->user?->name ?? 'Unknown'}} {{$staff->bank}} {{$staff->branch}} {{$staff->routing}} {{$staff->title}} {{$staff->account}}
{{ $bank_infos->appends(request()->input())->links() }}
@endsection @section('modal') @endsection @section('script') @endsection