MIF_E31220412/resources/views/sewa/riwayat.blade.php

95 lines
5.2 KiB
PHP

@extends('layouts.app')
@section('title', 'Riwayat Sewa - INUFA')
@section('header', 'Riwayat Sewa')
@section('content')
<div class="container mx-auto px-4 py-8">
@if(session('success'))
<div class="bg-green-100 border-l-4 border-green-500 text-green-700 p-4 mb-4 rounded">
{{ session('success') }}
</div>
@endif
@if(session('error'))
<div class="bg-red-100 border-l-4 border-red-500 text-red-700 p-4 mb-4 rounded">
{{ session('error') }}
</div>
@endif
<!-- Riwayat Sewa Table -->
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">No</th>
@if($showDetailPenyewa)
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Penyewa</th>
@endif
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Paket</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Tanggal Sewa</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Total Harga</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Aksi</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@forelse($sewas as $index => $sewa)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
{{ $index + 1 }}
</td>
@if($showDetailPenyewa)
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">{{ $sewa->user->nama }}</div>
<div class="text-sm text-gray-500">{{ $sewa->user->email }}</div>
</td>
@endif
<td class="px-6 py-4">
<div class="text-sm font-medium text-gray-900">{{ $sewa->paket->nama_paket }}</div>
<div class="text-sm text-gray-500">{{ ucfirst($sewa->paket->jenis_paket) }}</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">{{ \Carbon\Carbon::parse($sewa->tanggal_sewa)->format('d M Y') }}</div>
<div class="text-sm text-gray-500">{{ $sewa->durasi_sewa }} hari</div>
</td>
<td class="px-6 py-4 whitespace-nowrap">
<span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full
@if($sewa->status === 'pending')
bg-yellow-100 text-yellow-800
@elseif($sewa->status === 'confirmed')
bg-green-100 text-green-800
@elseif($sewa->status === 'ongoing')
bg-blue-100 text-blue-800
@elseif($sewa->status === 'completed')
bg-purple-100 text-purple-800
@else
bg-red-100 text-red-800
@endif">
{{ ucfirst($sewa->status) }}
</span>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
Rp {{ number_format($sewa->total_harga, 0, ',', '.') }}
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
<a href="{{ route('sewa.show', $sewa->id) }}"
class="text-blue-600 hover:text-blue-900">
<i class="fas fa-eye mr-1"></i>Detail
</a>
</td>
</tr>
@empty
<tr>
<td colspan="{{ $showDetailPenyewa ? 7 : 6 }}" class="px-6 py-4 text-center text-gray-500">
Tidak ada riwayat sewa
</td>
</tr>
@endforelse
</tbody>
</table>
</div>
</div>
</div>
@endsection