@extends('themes.default1.agent.layout.agent') @extends('themes.default1.agent.layout.sidebar') @section('pages') active @stop @section('all-pages') class="active" @stop @section('PageHeader')

{{Lang::get('lang.pages')}}

@stop @section('content')

{{Lang::get('lang.pages')}}

@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{!! lang::get('lang.alert') !!}! {{Session::get('fails')}}
@endif
{!! Datatable::table() ->addColumn(Lang::get('lang.name'), Lang::get('lang.created'), Lang::get('lang.action')) // these are the column headings to be shown ->setUrl(route('api.page')) // this is the route where data will be retrieved ->render() !!}
@stop