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

Cart empty

@endif
@csrf
@endsection