@extends('bio::layouts.master') @section('content') @php $countries = []; foreach ($shipping as $key => $value) { $countries[] = $value->country_iso; } @endphp
{{ __('Order Information') }}
@if ($auth_user = \Auth::user())
{{ __('Not You?') }} {{ __('Logout') }}
@else {{ __('Login') }} @endif
{!! (new \Sandy\Blocks\shop\Helper\Cart)->get_cart($bio->id, true) !!}
{{ __('Total') }}:

@csrf
{{ __('Shipping Information') }}
@if (user('settings.store.shipping.enable', $bio->id))
@endif
@if (user('settings.store.shipping.enable', $bio->id)) @if (!$shipping->isEmpty())
{{ __('Shipping Locations') }}
@foreach ($shipping as $ship)
@endforeach
@if (user('settings.store.shipping.type', $bio->id))
{{ __('We cannot ship to the selected country.') }}
@endif @endif @endif @if (!\DarryCart::session($bio->id)->isEmpty()) @endif
@section('footerJS') @stop @endsection