@extends('front.layout.app') @section('title', 'Success') @section('content')
image

Payment Success

Payment Success!

Your payment has been successfully done.

@if (isset($order))
@forelse ($order->orderItems as $item) @empty @endforelse
User Name Product Name Quantity Tracking No
{{ $order->first_name ?? 'Guest' }} {{ $item->products->name }} {{ $item->quantity ?? '' }} {{ $order->tracking_no }}
Data Not Found
Total Amount ${{ number_format($order->total_price, 2) ?? '00' }}
@endif @endsection