Evercode1\ViewMaker\DatatableTemplates::dtIndexTemplate PHP Method

dtIndexTemplate() public method

public dtIndexTemplate ( )
    public function dtIndexTemplate()
    {
        $content = <<<EOD

@extends('layouts.:::masterPage:::')
@section('css')
<link rel="stylesheet" href="//cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css">
@endsection

@section('title')

    <title>The :::modelsUpperCase::: Page</title>

@endsection

@section('content')



        <ol class='breadcrumb'>
        <li><a href='/'>Home</a></li>
        <li><a href=':::modelRoute:::'>:::modelsUpperCase:::</a></li>
        </ol>

        <h1>:::modelsUpperCase:::</h1>

        @include(':::folderName:::.datatable')

        <div> <a href=":::modelRoute:::/create">
              <button type="button" class="btn btn-lg btn-primary">
                        Create New
              </button></a>
            </div>



@endsection

@section('scripts')

    @include(':::folderName:::.datatable-script')

@endsection
EOD;
        return $this->tokens->formatTokens($content);
    }