@extends('layouts.admin') @section('title', 'Checkout History') @section('page_title', 'Checkout History') @section('breadcrumb')
  • Checkout Armada
  • Riwayat
  • @endsection @push('css') @endpush @section('content')

    Checkout History

    {{-- Checkout Aktif --}}
    {{-- Filter Bar --}}
    Semua Finished
    @if($filter && $filter !== 'all') @endif
    {{-- Table --}}
    @forelse($checkouts as $co) @empty @endforelse
    No. Kendaraan Sopir Jenis Kendaraan Tgl & Jam Checkout Tgl & Jam Berangkat Frontman Status
    {{ $co->kendaraan->no_lambung ?? '-' }} @if($co->kendaraan?->plat_nomor)
    {{ $co->kendaraan->plat_nomor }} @endif
    {{ $co->supir->nama_supir ?? '-' }} {{ $co->kendaraan->jenisKendaraan->nama_jenis_kendaraan ?? '-' }} {{ $co->checkout_date?->format('d-m-Y') ?? '-' }} @if($co->checkout_time)
    {{ $co->checkout_time }} @endif
    @if($co->leave_date) {{ $co->leave_date->format('d-m-Y') }} @if($co->leave_time)
    {{ $co->leave_time }} @endif @else - @endif
    {{ $co->frontman->nama_user ?? '-' }} @if($co->status === App\Models\CheckoutKendaraan::STATUS_ACTIVE) Aktif @elseif($co->status === App\Models\CheckoutKendaraan::STATUS_FINISHED) Selesai @else {{ $co->status }} @endif
    Tidak ada data checkout
    {{ $checkouts->withQueryString()->links('pagination::bootstrap-4') }}
    @endsection