@extends('frontend.layouts.partials.default') @section('title','Shopping Cart') @section('main')

Shopping Cart

Items selected for purchase : {{count($items)}}

Save big with subscription plans : View Pricing

Click here to continue shopping

@if (count($items))
@endif @if(count($items)==0)
Currently your cart is empty
@endif @foreach($items as $item) @if($item['item_type'] == 1)

Image ID :

{{$item['image_name_id']}}

License Type :

{{config('variables.License')[$item['license_type']]}}

Size :

{{$item['size']}}

Price :

{{Priceformat($item['price'])}}
@else

Video ID :

{{$item['video_secret']}}

License Type :

{{config('variables.License')[$item['license_type']]}}

Size :

{{$item['size']}}

Price :

{{Priceformat($item['price'])}}
@endif @endforeach @if (count($items))

Sub Total

{{Priceformat($total)}}

Vat (%)

{{$vat}} %

Grand Total

{{Priceformat($grand_total)}}

@endif
@endsection