| 1 | <?php namespace Arcanedev\LaravelExcel\Exporters; |
||
| 11 | class DefaultSerializer implements SerializerContract |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Getters & Setters |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | /** |
||
| 18 | * Get the serialized data. |
||
| 19 | * |
||
| 20 | * @param \Illuminate\Database\Eloquent\Model $data |
||
| 21 | * |
||
| 22 | * @return array |
||
| 23 | */ |
||
| 24 | 6 | public function getData($data) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Get the header. |
||
| 31 | * |
||
| 32 | * @return array |
||
| 33 | */ |
||
| 34 | 12 | public function getHeader() |
|
| 38 | } |
||
| 39 |