@extends('agent.layout.app') @section('title') Admin - {{ __('crud.admin.providers.index') }} @endsection @section('heading') {{ __('crud.admin.providers.index') }} @endsection @section('content')
{{-- Approved --}} @forelse ($providers as $provider) @empty @endforelse
{{ __('crud.inputs.SNo') }} {{ __('crud.admin.providers.name') }} {{ __('crud.general.id') }} {{ __('crud.inputs.name') }} {{ __('crud.inputs.email') }} {{ __('crud.inputs.phone') }} {{ __('crud.admin.documents.name') }} {{ __('crud.inputs.status') }}
{{ $loop->index + 1 }} {{ $provider->id }}

{{ $provider->name }}

{{--

10x Developer

--}}
{{ $provider->email ?? '' }} {{ $provider->mobile }} @if($provider->status == 'document') {{ $provider->pendingDocuments ? "Documents Verification Pending" : "Documents Required" }} @elseif($provider->status == 'banned') Bloked @elseif($provider->status == 'approved') Approved @endif
@lang('crud.general.not_found')
{{-- Pagination --}}
{!! $providers->links() !!}
@endsection