@extends('layouts.admin') @section('title', 'Client Details - EV Charging Network') @section('breadcrumb_title', 'Management') @section('breadcrumb_sub_title', 'Client Details') @section('page_title', 'Client Details') @section('content')
{{ $client->email }}
{{ $client->contact }}
{{--Points
Contributions
Vehicles
| Name | Location | {{--Status | --}}Created |
|---|---|---|---|
| {{ $chargingPoint->name }} | {{ $chargingPoint->description }} | {{--{{ ucfirst($chargingPoint->status) }} | --}}{{ $chargingPoint->created_at->format('M d, Y') }} |
No charging points found for this client.
| Model | Type | Year | Charging Speed | Battery Capacity | Added Date |
|---|---|---|---|---|---|
| {{ $vehicle->model }} | {{ $vehicle->type }} | {{ $vehicle->year }} | {{ $vehicle->charging_speed }} | {{ $vehicle->battery_capacity }} | {{ $vehicle->created_at->format('M d, Y') }} |
No vehicles found for this client.
| Activity | Charging Point | Date | Points |
|---|---|---|---|
| {{ $activity->activity_type }} | {{ $activity->chargingPoint->name ?? 'N/A' }} | {{ $activity->created_at->format('M d, Y H:i') }} | @if ($activity->points_earned) +{{ $activity->points_earned }} @else - @endif |