@extends('base') @section('title', __('Shopping Bag')) @section('content')

{{ __('my-bag') }}

@if(isset($isCartProcessing) and $isCartProcessing)
{{__('You have a payment in progress')}}
{{__('Abort Payment')}}
@else
{{__('Your shopping bag is empty. Start shopping now')}}
{{__('Shopping now')}}
@endif
@endsection