1 | <?php namespace Arcanedev\LaravelApiHelper\Traits; |
||
11 | trait TransformableModel |
||
12 | { |
||
13 | /* ----------------------------------------------------------------- |
||
14 | | Main Methods |
||
15 | | ----------------------------------------------------------------- |
||
16 | */ |
||
17 | /** |
||
18 | * Transform the model. |
||
19 | * |
||
20 | * @param callable $callable |
||
21 | * |
||
22 | * @return \Illuminate\Support\Fluent |
||
23 | */ |
||
24 | 6 | public function transform(callable $callable) |
|
28 | } |
||
29 |