@extends('layouts.admin') @section('title', 'Orders') @section('content')
ID | First Name | Last Name | Amount | Stripe ID | Stripe Status | Created At | ||
---|---|---|---|---|---|---|---|---|
{{ $order->id }} | {{ $order->first_name ?? 'N/A' }} | {{ $order->last_name ?? 'N/A' }} | {{ $order->email ?? 'N/A' }} | ${{ $order->amount }} | {{ $order->stripe_id ?? 'N/A' }} | {{ $order->stripe_status ?? 'N/A' }} | {{ $order->created_at->format('m/d/Y') }} | View |