@extends('themes.default1.agent.layout.agent') @section('Users') class="active" @stop @section('user-bar') active @stop @section('user') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content')

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

{{Lang::get('lang.create_user')}}
@if(Session::has('success'))
Success {{Session::get('success')}}
@endif @if(Session::has('fails'))
Fail! {{Session::get('fails')}}
@endif orderBy('id', 'ASC')->paginate(20); ?> {!! Datatable::table() ->addColumn(Lang::get('lang.name'), Lang::get('lang.email'), Lang::get('lang.phone'), Lang::get('lang.status'), Lang::get('lang.last_login'), Lang::get('lang.action')) // these are the column headings to be shown ->setUrl(route('user.list')) // this is the route where data will be retrieved ->render() !!}
@stop