@extends('layouts.store') @section('title', __('app.order_success') . ' - ' . __('app.site_name')) @section('content')

{{ __('app.order_success') }}

{{ __('app.order_number') }}:

{{ $order->order_number }}

@foreach($order->items as $item)
{{ $item->product_name }} x{{ $item->quantity }} {{ number_format($item->total, 2) }} {{ __('app.jod') }}
@endforeach
{{ __('app.total') }} {{ number_format($order->total, 2) }} {{ __('app.jod') }}
@endsection