@extends('layouts.admin') @section('title', $configuration['title']) @section('content')

{{ $configuration['title'] }}

Search, filter and review platform records.

@if($statuses->isNotEmpty())
@endif
{{ number_format($records->total()) }} recordsPage {{ $records->currentPage() }} of {{ max(1,$records->lastPage()) }}
@foreach($columns as $column)@endforeach @forelse($records as $record)@foreach($columns as $column)@php($value=$record->{$column})@endforeach@empty@endforelse
{{ ucwords(str_replace('_',' ',$column)) }}
@if(in_array($column,['status','risk_level','priority','payment_status'],true)){{ ucfirst(str_replace('_',' ',(string)$value)) }}@elseif(in_array($column,['is_premium','is_public','is_system'],true))@elseif(str_contains($column,'amount'))₹{{ number_format((float)$value,2) }}@else{{ \Illuminate\Support\Str::limit((string)($value ?? '—'),36) }}@endif

No records found

Records will appear here when data is added.

@if($records->hasPages())
{{ $records->links() }}
@endif
@endsection