{{ trans('app.logo') }}
{{ trans('app.name') }}: {{ $shop->name }} @if ($shop->onTrial()) {{ trans('app.trialing') }} @endif
{{ trans('app.owner') }}: {{ $shop->owner->name }}
{{ trans('app.status') }}: @if ($shop->config->maintenance_mode) {{ trans('app.maintenance_mode') }} @else {{ $shop->active ? trans('app.active') : trans('app.inactive') }} @endif
{{ trans('app.member_since') }}: {{ $shop->created_at->toFormattedDateString() }}
{{ trans('app.updated_at') }}: {{ $shop->updated_at->toDayDateTimeString() }}
  • {{ trans('app.basic_info') }}
  • {{ trans('app.configs') }}
  • {{ trans('app.description') }}
  • {{ trans('app.contact') }}
@if ($shop->onTrial()) @endif @if ($shop->subscribed($shop->current_billing_plan)) @endif @if ($shop->external_url) @endif
{{ trans('app.current_billing_plan') }}: {{ $shop->current_billing_plan }} {{-- @if ($shop->onGenericTrial()) --}} {{-- {{ trans('app.on_generic_trial') }} --}} {{-- @elseif($shop->onTrial()) --}} @if ($shop->onTrial()) {{ trans('app.trialing') }} @endif
{{ trans('app.trial_ends_at') }}: {{ $shop->trial_ends_at->toDayDateTimeString() }}
{{ trans('app.next_billing_date') }}: {{ $shop->getNextBillingDate() }}
{{ trans('app.legal_name') }}: {{ $shop->legal_name }}
{{ trans('app.slug') }}: {{ $shop->slug }}
{{ trans('app.time_zone') }}: {{ $shop->timezone->text }}
{{ trans('app.external_url') }}: {{ $shop->external_url }}
@if ($shop->config->tax) @endif @if ($shop->config->paymentMethod) @endif @if ($shop->config->support_phone_toll_free) @endif
{{ trans('app.order_handling_cost') }}: {{ get_formated_currency($shop->config->order_handling_cost, 2, config('system_settings.currency.id')) }}
{{ trans('app.default_tax') }}: {{ $shop->config->tax->name }}
{{ trans('app.default_payment_method') }}: {{ $shop->config->paymentMethod->name }}
{{ trans('app.payment_methods') }}: @foreach ($shop->config->paymentMethods as $paymentMethod) {{ $paymentMethod->name }} @endforeach
{{ trans('app.support_phone') }}: {{ $shop->config->support_phone }}
{{ trans('app.support_phone_toll_free') }}: {{ $shop->config->support_phone_toll_free }}
{{ trans('app.support_email') }}: {{ $shop->config->support_email }}
{{ trans('app.config_updated_at') }}: {{ $shop->config->updated_at->toDayDateTimeString() }}
{!! $shop->description ?? trans('app.description_not_available') !!}
@if ($shop->email) @endif @if ($shop->primaryAddress) @endif
{{ trans('app.email') }}: {{ $shop->email }}
{{ trans('app.address') }}: {!! $shop->primaryAddress->toHtml() !!}