@extends('layouts.app') @section('title', 'Order') @section('content')
ID {{ $order->id }}
First Name {{ $order->first_name }}
Last Name {{ $order->last_name }}
Email {{ $order->email }}
Amount {{ $order->amount }}
Stripe Status {{ ucwords($order->stripe_status) }}
Date {{ $order->created_at->format('m/d/Y g:ia') }}
@if($order->orderItems->count() > 0) @foreach($order->orderItems as $order) @endforeach
Product Actions
{{ $order->product->name }} View @if($order->product->downloadable_file) Download @endif
@else
You currently have no orders to display.
@endif
@endsection @push('styles') @endpush