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