@extends('frontend.master') @section('title', 'Cart') @section('content')
@php $total = 0; @endphp @if (session('cart')) @foreach (session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity']; @endphp @endforeach @endif
{{ __('text.Product') }} {{ __('text.Price') }} {{ __('text.Quantity') }} {{ __('text.Total') }}
৳{{ $details['price'] }}
৳{{ $details['price'] * $details['quantity'] }}
{{--
--}} {{-- CLEAR CART --}}
{{-- --}} @endsection