@extends('front/layout') @section('page_title','Cart Page') @section('container') @if(isset($list[0])) Product Price Quantity Total @foreach($list as $data) {{$data->name}} @if($data->size!='') SIZE: {{$data->size}} @endif @if($data->color!='') COLOR: {{$data->color}} @endif Rs {{$data->price}} Rs {{$data->price*$data->qty}} @endforeach @else Cart empty @endif