@extends('admin.layouts.master') @section('content')
|
@endcan
{{ trans('app.image') }} | {{ trans('app.shop_name') }} | @if (is_subscription_enabled()){{ trans('app.current_billing_plan') }} | @endif {{-- @if (is_incevio_package_loaded('wallet')){{ trans('wallet::lang.balance') }} | @endif --}} @if (is_incevio_package_loaded('dynamicCommission')){{ trans('dynamicCommission::lang.periodic_sold_amount') }} | @endif{{ trans('app.owner') }} | {{ trans('app.option') }} |
---|---|---|---|---|---|---|---|
@endcan |
|
{{ $shop->name }}
@if ($shop->isVerified())
|
@if (is_subscription_enabled())
{{ $shop->plan->name }} @if ($shop->onTrial()) {{ trans('app.trialing') }} @elseif($shop->hasExpiredPlan()) {{ trans('app.expired') }} @endif @if ($shop->onTrial() || $shop->hasExpiredPlan()) @if (Auth::user()->isAdmin()) @endif @endif | @endif {{-- @if (is_incevio_package_loaded('wallet')){{ get_formated_currency($shop->balance, 2, config('system_settings.currency.id')) }} | @endif --}} @if (is_incevio_package_loaded('dynamicCommission')){{ get_formated_currency($shop->periodic_sold_amount, 2, config('system_settings.currency.id')) }} | @endif
@can('view', $shop->owner) {{ $shop->owner->getName() }} @else {{ $shop->owner->getName() }} @endcan @unless ($shop->owner->active) {{ trans('app.inactive') }} @endunless |
@can('view', $shop) @endcan @can('secretLogin', $shop->owner) @endcan @can('update', $shop) @if ($shop->primaryAddress) @else @endif @endcan @can('delete', $shop) {!! Form::open(['route' => ['admin.vendor.shop.trash', $shop->id], 'method' => 'delete', 'class' => 'data-form']) !!} {!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!} {!! Form::close() !!} @endcan |