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

Cart Items (2)

@php $cartItems = [ [ 'id' => 1, 'name' => 'Premium Subscription', 'price' => 34000, 'image' => 'https://picsum.photos/80/80?random=1', 'type' => 'subscription', 'description' => 'Monthly premium access to all features', ], [ 'id' => 2, 'name' => 'Album Download', 'price' => 344000, 'image' => 'https://picsum.photos/80/80?random=2', 'type' => 'album', 'description' => 'Full album download with high quality audio', ], ]; @endphp @foreach ($cartItems as $item)
{{ $item['name'] }}

{{ $item['name'] }}

{{ $item['description'] }}
{{ ucfirst($item['type']) }}
Rp. {{ number_format($item['price'], 2, ',', '.') }}
@endforeach

You Might Also Like

@for ($i = 1; $i <= 3; $i++)
Recommended item
Recommended Album {{ $i }}
Rp. {{ number_format(rand(50000, 150000), 2, ',', '.') }}
@endfor

Order Summary

Subtotal Rp. 378.000,00
Tax (10%) Rp. 37.800,00
Discount - Rp. 15.000,00
Total
Total Rp. 400.800,00

Payment Methods

We accept various payment methods for your convenience. All transactions are secure and encrypted.

Need Help?

If you have any questions about your order, please contact our support team.
Contact Support
@endsection @section('scripts') @endsection