@extends('admin.layouts.master') @section('content')
{{ trans('app.nice_name') }} | {{ trans('app.full_name') }} | {{ trans('app.shop') }} | {{ trans('app.current_billing_plan') }} | {{ trans('app.option') }} |
---|---|---|---|---|
@if($merchant->image)
{{ $merchant->nice_name }} @unless($merchant->active) {{ trans('app.inactive') }} @endunless |
@can('view', $merchant) {{ $merchant->name }} @else {{ $merchant->name }} @endcan |
@if($merchant->owns->name)
|
{{ $merchant->owns->current_billing_plan }} | @can('view', $merchant) @endcan @can('secretLogin', $merchant) @endcan @can('update', $merchant) @if($merchant->primaryAddress) @else @endif @endcan @can('delete', $merchant) {!! Form::open(['route' => ['admin.vendor.merchant.trash', $merchant->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 |