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

Reseller Applications

@if(session('success')) @endif
@forelse($applications as $app) @empty @endforelse
Date Name Company Status Actions
{{ $app->created_at->format('M d, Y') }}
{{ $app->name }}
{{ $app->email }}
{{ $app->company_name }} {{ ucfirst($app->status) }}
View
@csrf @method('DELETE')
No applications found.
@if($applications->hasPages())
{{ $applications->links() }}
@endif
@endsection