{{ 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.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 }} | ||
{{ $key == 'file_paths' ? trans('app.uploaded_documents') : $key }}: |
@foreach ($value as $file_name => $file_path)
{{ $loop->iteration . '.' }} {{ $file_name }} @endforeach | {{ implode(', ', $value) }} | {{ $value }} |
{{ 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() }} |
{{ trans('app.email') }}: | {{ $shop->email }} |
---|---|
{{ trans('app.address') }}: | {!! $shop->primaryAddress->toHtml() !!} |