Blame view

app/Transformers/Setting/Currency.php 942 Bytes
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  <?php
  
  namespace App\Transformers\Setting;
  
  use App\Models\Setting\Currency as Model;
  use League\Fractal\TransformerAbstract;
  
  class Currency extends TransformerAbstract
  {
      /**
       * @param Model $model
       * @return array
       */
      public function transform(Model $model)
      {
          return [
              'id' => $model->id,
              'company_id' => $model->company_id,
              'name' => $model->name,
              'code' => $model->code,
              'rate' => $model->rate,
              'enabled' => $model->enabled,
              'precision' => $model->precision,
              'symbol' => $model->symbol,
              'symbol_first' => $model->symbol_first,
              'decimal_mark' => $model->decimal_mark,
              'thousands_separator' => $model->thousands_separator,
              'created_at' => $model->created_at->toIso8601String(),
              'updated_at' => $model->updated_at->toIso8601String(),
          ];
      }
  }