@extends('admin.layouts.app') @section('title', 'Dashboard') @section('breadcrumb') Dashboard @endsection @section('content') {{-- Page Header --}}
Welcome back, {{ auth()->user()->name }}. Here's an overview of your system.
| # | Address | State | Zone | Score | Status | Date | |
|---|---|---|---|---|---|---|---|
| {{ str_pad($rep->id, 5, '0', STR_PAD_LEFT) }} | {{ $rep->state?->name ?? '—' }} | {{ $rep->zone?->name ?? '—' }} | @if($rep->feasibility_score !== null) {{ $rep->feasibility_score }} @else — @endif | {{ ucfirst($rep->status ?? 'pending') }} | {{ $rep->created_at->format('d M, H:i') }} | View | |
| No reports yet | |||||||
| User | Role | Status | Joined |
|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->email }}
|
{{ $user->role ?? 'user' }} | Active | {{ $user->created_at->format('d M Y') }} |
| No users found | |||