Skip to content
Icon

WARNING You're browsing the documentation for an upcoming version of Laravel DataTables. The documentation and features of this release are subject to change.

Print Column

You can print a column customised header if manually set.

Print Columns with Custom Title

protected $printColumns = [
['data' => 'name', 'title' => 'Name'],
['data' => 'email', 'title' => 'Registered Email'],
];

Print Columns

protected $printColumns = [
'name',
'email',
];