@extends('layouts.admin') @section('title') @lang('Pending Agent Request') @endsection @section('breadcrumb')

@lang('Pending Agent Request')

@endsection @section('content')
@forelse ($agents as $key => $agent) @empty @endforelse
@lang('Sl') @lang('Name') @lang('Email') @lang('National ID NO. (NID)') @lang('Status') @lang('Action')
{{$key + $agents->firstItem()}} {{$agent->name}} {{$agent->email}} {{$agent->nid}} @if($agent->status == 1) @lang('Active') @elseif($agent->status == 2) @lang('Pending') @endif @lang('Details') @lang('Accept') @lang('Reject')
@lang('No Data Found')
@if ($agents->hasPages()) {{ $agents->links('admin.partials.paginate') }} @endif
@endsection @push('script') @endpush