@extends('layouts.sidebar') @section('title', 'Nomadic-Applications') @section('content')

Applications

@if(!empty($data) && $data->count()) @foreach($data as $dt) @endforeach @else @endif
Name Role Home City Status
{{$dt->fname}} {{$dt->lname}} {{ucfirst($dt->role)}} @if(isset($dt->user_location->location)){{$dt->user_location->location}}@else N/A @endif @if($dt->status==0) Sent @elseif($dt->status==1) Payment Captured @elseif($dt->status==2) Approved @elseif($dt->status==3) Denied @endif @if($dt->status==0 || $dt->status==1) @else @endif
No record found
{!! $data->withQueryString()->links('vendor.pagination.bootstrap-5') !!}
@endsection @section('footer_scripts') @endsection