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