@extends('layouts.admin') @section('title', 'Detail Verifikasi Rental') @section('page_title', 'Detail Verifikasi Rental') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif ← Kembali ke daftar rental

{{ $rentalCompany->company_name }}

{{ $rentalCompany->description ?: 'Tidak ada deskripsi.' }}

Owner

{{ $rentalCompany->user?->name ?? '-' }}

Status Verifikasi

{{ $rentalCompany->status_verification }}

Email

{{ $rentalCompany->email }}

Telepon

{{ $rentalCompany->phone }}

Kota

{{ $rentalCompany->city }}

Total Kendaraan / Booking

{{ $totalVehicles }} / {{ $totalBookings }}

Alamat

{{ $rentalCompany->address }}

@if ($rentalCompany->rejection_note)
Catatan Penolakan Terakhir:

{{ $rentalCompany->rejection_note }}

@endif

10 Kendaraan Terbaru

@forelse ($vehicles as $vehicle) @empty @endforelse
Nama Brand Plat Harga/Hari Total Booking
{{ $vehicle->name }} {{ $vehicle->brand }} {{ $vehicle->plate_number }} Rp {{ number_format($vehicle->price_per_day, 0, ',', '.') }} {{ $vehicle->bookings_count }}
Belum ada kendaraan.
@endsection