@php($title = 'Download History') @php($heading = 'Download History') @php($sidebar = view()->make('dashboard.partials.customer-sidebar')->render()) @extends('layouts.dashboard', compact('title','heading','sidebar')) @section('content')
@forelse(($downloads ?? []) as $d) @empty @endforelse
Item Status Downloaded At
{{ $d->item_name ?? '—' }} {{ ucfirst($d->status ?? 'unknown') }} {{ \Illuminate\Support\Carbon::parse($d->created_at ?? now())->toDayDateTimeString() }}
No downloads found
{{ method_exists(($downloads ?? null), 'links') ? $downloads->links() : '' }}
@endsection