@extends('appshell::layouts.private') @section('title') {{ $shippingMethod->name }} @stop @section('content')
{{ $shippingMethod->name }}
@can('edit payment methods') {{ __('Edit Shipping Method') }} @endcan @can('delete shipping methods') {!! Form::open([ 'route' => ['vanilo.admin.shipping-method.destroy', $shippingMethod], 'method' => 'DELETE', 'class' => 'float-right', 'data-confirmation-text' => __('Delete this shipping method: ":name"?', ['name' => $shippingMethod->name]) ]) !!} {!! Form::close() !!} @endcan
@stop