Evercode1\ViewMaker\DatatableTemplates::dtDatatableTemplate PHP Method

dtDatatableTemplate() public method

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

    <table id=":::dtTableName:::" class="display">
        <thead>
        <tr>
            <th>Id</th>
            <th>Name</th>
            <th>Date Created</th>
            <th>Actions</th>
        </tr>
        </thead>

        <tbody>
        </tbody>

    </table>
EOD;
        return $this->tokens->formatTokens($content);
    }