@extends('themes.default1.agent.layout.agent') @extends('themes.default1.agent.layout.sidebar') @section('PageHeader')

{!! Lang::get('lang.comments') !!}

@stop @section('comment') class="nav-link active" @stop @section('Tools') class="nav-link active" @stop @section('tool') class="active" @stop @section('kb') class="nav-link active" @stop @section('content') @if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{!! Lang::get('lang.alert') !!} ! {{Session::get('fails')}}
@endif

{{Lang::get('lang.comments-list')}}

{!! Datatable::table() ->addColumn(Lang::get('lang.details'), Lang::get('lang.comment'), Lang::get('lang.status'), Lang::get('lang.action')) // these are the column headings to be shown ->setUrl(route('api.comment')) // this is the route where data will be retrieved ->render() !!}
@stop