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

@lang('Manage Agent')

@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 == 0) @lang('banned') @endif @lang('Details')
@lang('No Data Found')
@if ($agents->hasPages()) {{ $agents->links('admin.partials.paginate') }} @endif
@endsection @push('script') @endpush