@extends('layouts.app') @section('title', 'Data Penyewaan') @section('page-title', 'Data Penyewaan') @section('sidebar-menu')
Dashboard Kelola Mobil Data Penyewaan Profil Saya @endsection @section('content')Belum ada data penyewaan.
| # | Penyewa | Mobil | Tanggal Sewa | Rencana Kembali | Aktual Kembali | Qty Sewa | Qty Kembali | Total Hari | Total Biaya | Denda | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i + 1 }} | {{ $p->user->username ?? '-' }} | {{ $p->mobil->nama_mobil ?? '-' }} | {{ optional($p->tanggal_sewa)->format('d M Y') }} | {{ optional($p->tanggal_kembali_rencana)->format('d M Y') }} | {{ optional($p->tanggal_kembali_aktual)->format('d M Y') ?? '-' }} | {{ $p->jumlah_sewa }} | {{ $p->jumlah_kembali ?? 0 }} | {{ $hari }} hari | Rp {{ number_format($total, 0, ',', '.') }} | @if(($p->denda ?? 0) > 0) Rp {{ number_format($p->denda, 0, ',', '.') }} @else - @endif | @if($p->status === 'aktif') Aktif @elseif($p->status === 'selesai') Selesai @elseif($p->status === 'terlambat') Terlambat @else {{ ucfirst($p->status) }} @endif |