@extends('layouts.app') @section('title', 'My orders') @section('content')
Orders where you are the customer. Download files for completed orders below.
| 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. | |||