@php($title = 'Download History') @php($heading = 'Your Downloads') @php($sidebar = view()->make('dashboard.partials.customer-sidebar')->render()) @extends('layouts.dashboard', compact('title','heading','sidebar')) @section('content')
No downloads yet. Start exploring products and categories.
@else| Date | Product | Version | Category | IP |
|---|---|---|---|---|
| {{ $date ? \Illuminate\Support\Carbon::parse($date)->format('Y-m-d H:i') : '—' }} | @php($pid = $d->product_id ?? null) @php($slug = $d->product_slug ?? null) @php($name = $d->product_name ?? null) @if($slug) {{ $name ?? $slug }} @elseif($pid) #{{ $pid }} @else {{ $name ?? '—' }} @endif | {{ $d->product_version ?? '—' }} | {{ $d->category_slug ?? ($d->category ?? '—') }} | {{ $d->ip ?? '—' }} |