@extends('layouts.admin') @section('title', 'Clients - EV Charging Network') @section('breadcrumb_title', 'System Users') @section('breadcrumb_link', route('clients.index')) @section('breadcrumb_sub_title', 'Clients') @section('page_title', 'Clients Management') @section('content')
Manage registered clients and their information.
| # | Profile | Name | Status | Points | Contributions | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $i++ }} |
{{-- {{ $client->avatar }} --}} |
{{ $client->full_name }} |
{{ $client->email }} | {{ $client->status ? 'Active' : 'Inactive' }} | {{ $client->av_points ?? 0 }} | {{ $client->contribution_count ?? 0 }} | |
|
No clients found. Add the first client. |
|||||||