@extends('layouts.admin') @section('title', 'Detail User') @section('page_title', 'Detail User') @section('content') ← Kembali ke daftar user

{{ $user->name }}

Email

{{ $user->email }}

Telepon

{{ $user->phone ?: '-' }}

Role

{{ str_replace('_', ' ', $user->role) }}

Terdaftar

{{ $user->created_at->format('d M Y H:i') }}

@if ($user->role === 'customer')

Ringkasan Aktivitas Customer

Total Booking

{{ $detail['booking_count'] ?? 0 }}

Booking Selesai

{{ $detail['completed_booking_count'] ?? 0 }}

Total Transaksi Verified

Rp {{ number_format($detail['verified_transaction_total'] ?? 0, 0, ',', '.') }}

Total Review

{{ $detail['review_count'] ?? 0 }}

@endif @if ($user->role === 'admin_rental')

Ringkasan Akun Admin Rental

@php $rental = $detail['rental_company'] ?? null; @endphp @if ($rental)
Rental Company

{{ $rental->company_name }}

Total Kendaraan

{{ $detail['vehicle_count'] ?? 0 }}

Total Booking

{{ $detail['booking_count'] ?? 0 }}

Status verifikasi: {{ $rental->status_verification }}

@else

User ini belum memiliki rental company.

@endif
@endif @endsection