{{ trans('app.logo') }}
{{ trans('app.name') }}: {{ $shop->name }}
{{ 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.available_from') }}: {{ $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->external_url) @endif
{{ 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) }}
{{ 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 or trans('app.description_not_available') !!}
@if($shop->email) @endif @if($shop->primaryAddress) @endif
{{ trans('app.email') }}: {{ $shop->email }}
{{ trans('app.address') }}: {!! $shop->primaryAddress->toHtml() !!}