Skip to content
Icon

WARNING You're browsing the documentation for an old version of LARAVEL-DATATABLES. Consider upgrading your project to laravel-datatables 10.0.

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',
];