@extends('frontend.components.layout') @section('title') Cart Show @endsection @section('topmenu') @include('frontend.components.topmenu') @endsection @section('content')
@if (Session::has('message'))
{{ Session::get('message') }}
@endif
@foreach ($cart_items as $item) @endforeach {{-- --}}
Product Price Qty Subtotal
product
{{ $item->name }}

Size: {{ $item->attributes->size ? $item->attributes->size : '' }} Color: {{ $item->attributes->color ? $item->attributes->color : '' }}

৳ {{ $item->price }}
@csrf
৳ {{ $item->quantity * $item->price }}
{{-- Edit --}} {{-- Remove --}} {{-- Remove Item --}}
{{--
@csrf
--}} Remove
product

Computer Mouse

$8.90 $8.90
{{--

Apply Discount Code

--}}

Summary

{{--

--}}
Subtotal ৳ {{ Cart::getSubTotal() }}
Estimated Delivery Charge
(Inside Dhaka City)
৳ 60
Order Total ৳ {{ Cart::getSubTotal() + 60 }}
@endsection