@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')
| Item | Status | Downloaded At |
|---|---|---|
| {{ $d->item_name ?? '—' }} | {{ ucfirst($d->status ?? 'unknown') }} | {{ \Illuminate\Support\Carbon::parse($d->created_at ?? now())->toDayDateTimeString() }} |
| No downloads found | ||