@extends('layout') @section('title', 'Checkout') @section('content') @if(session('customer_id')) @endif
{{ $product->name }}: @if(session('currency_id')) {{ session('currency_symbol') }} @php $currencyValue = session('value') ?? 1; $totalPrice = $currencyValue * $product->price ; @endphp {{ $totalPrice }}
@else {{$symbol}} {{ $product->price }} @endif{{ __('text.quantity') }}: {{ $cart[$product->id]['quantity'] }}
{{ __('text.sub_total') }}: @if(session('currency_id')) {{ session('currency_symbol') }} @php $currencyValue = session('value') ?? 1; $totalPrice = $currencyValue * number_format($product->price * $cart[$product->id]['quantity'], 2) ; @endphp {{ $totalPrice }}
@else {{$symbol}} {{ number_format($product->price * $cart[$product->id]['quantity'], 2) }} @endif