@extends(getTemplate() . '.user.layout.layout') @section('pages')
{{ trans('main.new_channel') }}
{{ csrf_field() }}
@if(count($channels) == 0)
{{ trans('main.no_channel') }}
{{ trans('main.channel_desc') }}
@else
@foreach($channels as $channel) @endforeach
{{ trans('main.title') }} {{ trans('main.link') }} {{ trans('main.views') }} {{ trans('main.contents') }} {{ trans('main.status') }} {{ trans('main.controls') }}
{{ $channel->title }} {{ $channel->username }} {{ $channel->view }} {{ $channel->contents_count }} @if($channel->mode==null Or $channel->mode=='pending') {{ trans('main.waiting') }} @else {{ trans('main.active') }} @endif
@endif
@endsection @section('script') @endsection