@extends('layouts.admin-progress', ['pageTitle' => 'Kelola Progress - Admin']) @section('title', 'Kelola Progress') @section('styles') @endsection @section('content')

Kelola Progress

+ Tambah Progress
@if(session('success'))
{{ session('success') }}
@endif
@forelse($progressList as $item) @empty @endforelse
No Kode Booking Pelanggan Status Deskripsi Lokasi Update Aksi
{{ $loop->iteration + ($progressList->currentPage() - 1) * $progressList->perPage() }} {{ $item->booking->booking_code ?? 'N/A' }} {{ $item->booking->user->name ?? 'N/A' }} {{ ucfirst(str_replace('-', ' ', $item->status)) }} {{ \Illuminate\Support\Str::limit($item->description, 40) }} {{ $item->location ?? '-' }} {{ $item->updated_at->format('d M Y H:i') }} Lihat Edit
@csrf @method('DELETE')
Belum ada data progress
@if($progressList->hasPages())
{{ $progressList->links() }}
@endif
@endsection