@extends('layouts.app') @section('content')

Order Summary

@php $items = [ [ 'name' => 'Premium Subscription', 'price' => 34000, 'image' => 'https://picsum.photos/40/40?random=1', ], [ 'name' => 'Album Download', 'price' => 344000, 'image' => 'https://picsum.photos/40/40?random=2', ], ]; @endphp @foreach ($items as $item)
{{ $item['name'] }}
Rp. {{ number_format($item['price'], 2, ',', '.') }}
@endforeach
Summary
Subtotal Rp. 378.000,00
Tax (10%) Rp. 37.800,00
Discount - Rp. 15.000,00
Total
Total Rp. 400.800,00

Need Help?

If you have any questions about your order, please contact our support team.
Contact Support

Payment Information

Payment Method

Card Information

Billing Address

@endsection @section('scripts') @endsection