in聽DataTableAbstract.php聽(line 624)
I think this is php error. Make sure you are using at least PHP 7.
Check in DataTableAbscract.php in line 624
Change this line
$this->serializer ?? null
to
isset($this->serializer) ? $this->serializer : null
Work in PHP 5.6
thanks for helping @alfenfebral
Check in DataTableAbscract.php in line 624
Change this line
$this->serializer ?? null
to
isset($this->serializer) ? $this->serializer : nullWork in PHP 5.6
thank you,
Most helpful comment
Check in DataTableAbscract.php in line 624
Change this line
$this->serializer ?? null
to
isset($this->serializer) ? $this->serializer : null
Work in PHP 5.6