Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 404 Bytes

print-column.md

File metadata and controls

23 lines (18 loc) · 404 Bytes

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