That did not seem to want to work, this is what my code looks like for my table:
DataTables::create(array(
"dataStore" => $this->dataStore("typeStatusTable"),
"plugins" => ["Buttons", "FixedColumns", "FixedHeader", "KeyTable", "Responsive", "RowReorder", "Scroller", "SearchPanes"],
"options" => array(
"dom" => 'Blfrtip',
"buttons" => [
[
"title" => "Entity Report",
"extend" => 'pdfHtml5',
"orientation" => "landscape",
"pageSize" => "A6",
"extend" => "excelHtml5",
],
"copy", "csv", "excel", "print", "colvis"
],
"searching" => true,
"paging" => true
),
"columns" => array(
"Entity #",
"Status",
"Applied Date",
"Renewal Date",
"Issued Date",
"Expired Date",
"Description",
),
"cssClass" => array(
"table" => "table table-bordered table-striped table-hover"
)
));