@extends('layouts.main') @push('nav_title') Enzy @endpush @section('page_title')

Shopping Cart

@endsection @section('profile') @include('layouts/profile') @endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('main_div')
{{--

Shopping Cart

--}}
@php $total = 0; @endphp
@foreach($carts as $cart) @php $total += (int) $cart['price'] * $cart['quantity']; @endphp

{{$cart['name']}} - Color / {{$cart['size']}}

${{$cart['price']}} x {{$cart['quantity']}}

1
@endforeach

Payment Options

Add New Card
@include('layouts.cart')
@endsection