@extends('layouts.app') @section('title', 'Order Confirmed') @section('content')

Order Confirmed!

Thank you for your purchase, {{ auth()->user()->name }}.

Order Number

{{ $order->order_number }}

Total Amount:{{ price($order->total) }}
Payment Method:{{ $order->payment_method }}
Status:{{ $order->status }}
@endsection