@extends('appshell::layouts.private') @section('title') {{ $channel->name }} {{ __('channel') }} @stop @section('content')
@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
@stop