@extends('layouts.portal') @section('content')
@if(session('success'))
✓ {{ session('success') }}
@endif @if(session('error'))
⚠ {{ session('error') }}
@endif @if($cart && count($cart) > 0)
Product Details
Price
Quantity
Subtotal
Action
@foreach($cart as $id => $item)
@if($item['media']) @if($item['media_type'] == 'video') @else {{ $item['name'] }} @endif @else
🛍️
@endif

{{ $item['name'] }}

Digital Item

Price
₹{{ number_format($item['price'], 2) }}
Quantity
@csrf
Subtotal
₹{{ number_format($item['price'] * $item['quantity'], 2) }}
@endforeach
Total Amount:
₹{{ number_format($total, 2) }}
← Continue Shopping Proceed to Checkout
@else
🛒

Your Cart is Empty

Looks like you haven't added anything to your cart yet.

Browse Store Now
@endif
@endsection