@extends('layouts.admin_layout') @section('content')

List of all Vendor Requests

Go to main website
View →
{{--
@csrf Sort By Username
@csrf Sort By Email
--}}

Vendor Requests ({{ count($vendors) }})


@forelse($vendors as $vendor) @empty

No Applied Vendors!!




@endforelse
Vendor Vendor Status Application Date Actions
@if($vendor->status == 'approved') Approved @else Pending @endif {{ date('M j Y', strtotime($vendor->created_at)) }}
@if($vendors->currentPage() != 1) «  @for($i=1; $i<=$vendors->lastPage(); $i++) @if($i== $vendors->currentPage()) {{ $i }}  @else {{ $i }}  @endif @endfor @if($vendors->currentPage() != $vendors->lastPage()) » @endif @else 1 » @endif
Showing {{ $vendors->firstItem() }}–{{ $vendors->lastItem() }} of {{ $vendors->total() }} results
@endsection