@extends('layouts.adminLayout.dashboardLayout') @section('styles') @endsection @section('content')
{{ Breadcrumbs::render('vendorList', $vendorList) }}

Functionary List

Back Add New
Reset Filter
@php $i = 1; @endphp @if (isset($vendorList) && !empty($vendorList) && $vendorList->total() > 0) @foreach ($vendorList as $index => $exam) @endforeach @else @endif
# Functionary ID Name Email Mobile Action
{{ $i++ }} {{ $exam->{'No_'} ?? '-' }} {{ $exam->Name ?? '-' }} {{ $exam->{'E-Mail'} ?? '-' }} {{ $exam->{'Mobile Phone No_'} ?? '-' }} Edit
No Data Available!
@if ($vendorList->total() > 0)
Showing {{ $vendorList->firstItem() }} to {{ $vendorList->lastItem() }} of {{ $vendorList->total() }} results
{{ $vendorList->appends(request()->query())->links('pagination::bootstrap-5') }}
@endif
@endsection @section('script') @endsection