You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You could just extend the basic serialiser, and override what you need
namespace App\Serialisers; use Illuminate\Database\Eloquent\Model; // use Cyberduck\LaravelExcel\Contract\SerialiserInterface; use Cyberduck\LaravelExcel\Serialiser\BasicSerialiser; class CustomSerialiser extends BasicSerialiser { public function getHeaderRow() { return [ 'header field 1', 'header field 2', 'header field 3', ]; } }
i have this piece of code
memberController.php
and i made a class inside App\CustomClass\
but this does not seem to work
The text was updated successfully, but these errors were encountered: