@extends('layouts.app') @section('title', 'Orders') @section('content')
@if($orders->count() > 0) @foreach($orders as $order) @endforeach
ID Date Amount Stripe Status Actions
{{ $order->id }} {{ ($order->created_at) ? $order->created_at->format('m/d/Y g:ia') : 'N/A' }} {{ $order->amount }} {{ ucwords($order->stripe_status) }} View
@else
You currently have no orders to display.
@endif
@endsection @push('styles') @endpush