@can('edit channels')
{{ __('Edit Channel') }}
@endcan
@can('delete channels')
{!! Form::open([
'route' => ['vanilo.admin.channel.destroy', $channel],
'method' => 'DELETE',
'class' => 'float-right',
'data-confirmation-text' => __('Delete this channel: ":name"?', ['name' => $channel->name])
])
!!}
{!! Form::close() !!}
@endcan