@extends('panel.layout.app') @section('title', 'Cart') @section('titlebar_actions', '') @section('content')
@if($items['data'])

{{ __('Cart Items') }}

{{ __('To complete the order, make payment') }}.

@foreach($items['data'] as $item)

{{ $item['extension']['name'] }}

{{ $item['extension']['price'] . ' USD' }}
@endforeach

{{ __('Tax included. Your payment is secured vis SSL.') }}

{{ __('Pay Now') }}
@else

{{ __('You did not add any extensions.') }}

@endif
@endsection @push('script') @includeWhen(\App\Helpers\Classes\Helper::showIntercomForBuyer(),'default.panel.layout.includes.buyer-intercom') @endpush