@extends('user.layout.layout') @section('pages')
{{{ trans('main.new_channel') }}}
@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 or '' }}} {{{ $channel->username or '' }}} {{{ $channel->view or '' }}} {{{ $channel->contents_count or '' }}} @if($channel->mode==null Or $channel->mode=='pending') {{{ trans('main.waiting') }}} @else {{{ trans('main.active') }}} @endif
@endif
@endsection @section('script') @endsection