@extends('layouts.admin')
@section('header', 'Customers')
@section('title', 'Customers - Abuse AI')
@section('content')
| Email |
Company |
Abuse Score |
Cases |
Status |
Created |
@forelse($customers as $customer)
| {{ $customer->email }} |
{{ $customer->company ?? '-' }} |
{{ number_format($customer->abuse_score, 1) }} |
{{ $customer->cases_count }} |
{{ $customer->is_suspended ? 'Suspended' : 'Active' }}
|
{{ $customer->created_at->diffForHumans() }} |
@empty
| No customers found |
@endforelse
{{ $customers->links() }}
@endsection