@extends('adminLayout::index')
@section('pageContent')
Pending business accounts need admin approval. Use Approve/Reject to change status.
Business
User
Location
Updated
Status
Actions
@if($accounts->isNotEmpty())
@foreach ($accounts as $accountData)
@include('apps.mpa.admin.business.accounts.index.parts.account-item', [
'accountData' => $accountData
])
@endforeach
@else
@endif
@unless($accounts->isEmpty())
{{ $accounts->onEachSide(1)->withQueryString()->links('pagination.index') }}
@endunless
@endsection