@extends('front.layout.app') @section('title', 'Cart Page') @section('content')

{{ 'Cart' }}

@php $total = '0'; @endphp
@forelse ($cart_data as $index => $item)
@php $total = $total + ($item->qty * $item->price) @endphp
image

{{ $item->name }}

$ {{ $item->price }}
Quantity
@empty

no data found

@endforelse
@if (Auth::check()) @if (Auth::user()->hasRole('user') && Cart::content()->count() > 0 )

${{ number_format(Cart::subTotal(), 2) }} SUBTOTAL

Shipping & taxes calculated at checkout. We accept Visa, MasterCard, American Express, and Discover cards.

CHECK OUT
@endif @endif
@endsection