@extends('layouts.store') @section('title', 'My Orders') @section('content')
Purchases

My Orders

@forelse ($orders as $order) @empty @endforelse
Order Status Total Action
{{ $order->order_number }} {{ $order->statusLabel() }} {{ \App\Models\SiteSetting::formatPrice($order->total) }}
No orders yet.
{{ $orders->links() }}
@endsection