@extends('users.layouts.index') @section('page_content')
@if ($message = Session::get('success')) @endif
@if ($message = Session::get('message'))
{{ $message }}
@endif

Cart Page

@foreach($getcart as $g)
Notice: Undefined variable: g in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 55

Notice: Trying to get property 'quantity' of non-object in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 55

Notice: Undefined variable: g in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 55

Notice: Trying to get property 'product' of non-object in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 55

Notice: Trying to get property 'price' of non-object in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 55
@endforeach
Product Price Quantity Subtotal Delete
{!! $g->product->name !!} ${!! number_format((float)$g->product->price, 2, '.', '') !!} ${!! number_format((float)$g->quantity*$g->product->price, 2, '.', '') !!} delete

Cart Total

Subtotal

${!! number_format((float)$subtotal, 2, '.', '') !!}

Shipping Charges

{{ $will_be_applied ? 'Will be included' : '$'. number_format((float)$shipping_charges, 2, '.', '') }}

TOTAL


Notice: Undefined variable: shipping_charges in /home/demohatinco/public_html/petmates_backend/resources/views/users/cart/cart.blade.php on line 94

${!! number_format((float)$total_price, 2, '.', '') !!}

Shipping Address

@csrf
@yield('app_jquery') @include('users.cart.partial.paymentModal',['total_price'=>$total_price]) @endsection