Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 392 Bytes

Layout.md

File metadata and controls

18 lines (13 loc) · 392 Bytes

Full Documentation

Layout

You can customize the layout around the table (e.g. for filters) by overriding the render method

public function render(): View
{
    return view('backend.users.table-layout'));
}

Inside the view, you can control where the table will be rendered by placing this snippet:

{!! $this->renderTable() !!}