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

{{ __('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 @if($app_is_demo)

{{ __('You can not add any extensions in demo mode.') }}

@else

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

@endif @endif
@endsection @push('script') @endpush