@extends('layouts.app') @section('title', 'My orders') @section('content')

My orders

Orders where you are the customer. Download files for completed orders below.

Your purchases

@forelse($orders as $o) @empty @endforelse
Product Status Date
{{ $o->product?->title ?? '—' }} {{ $o->status }} {{ $o->created_at->format('M j, Y H:i') }} @if($o->status === 'completed' && $o->product?->file_path) Download @else — @endif
You have no orders yet.
@if($orders->hasPages()) @endif
@endsection