@extends('layouts.landingapp')
@section('content')
@if($data)
| SI.NO |
Stores |
No.Items |
Total |
|
@php $i=1; @endphp
@foreach ($data as $key => $value)
| {{$i++}} |
{{$value['title']}} |
{{$value['itemCount']}} |
{{$value['total']}} |
Proceed
|
@endforeach
@elseif($data == '')
No Item in Cart!
@endif
{{--
--}}
{{--
--}}
@endsection