1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Transformers/ExpenseCategoryTransformer.php

55 lines
1.4 KiB
PHP
Raw Normal View History

2020-10-13 07:02:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-13 07:02:12 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-10-13 07:02:12 +02:00
*/
namespace App\Transformers;
use App\Models\ExpenseCategory;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* class ExpenseCategoryTransformer.
*/
class ExpenseCategoryTransformer extends EntityTransformer
{
use MakesHash;
use SoftDeletes;
2020-10-28 11:10:49 +01:00
2020-10-13 07:02:12 +02:00
protected $defaultIncludes = [
];
/**
* @var array
*/
protected $availableIncludes = [
];
/**
2020-10-28 11:10:49 +01:00
* @param ExpenseCategory $expense_category
2020-10-13 07:02:12 +02:00
*
* @return array
*/
public function transform(ExpenseCategory $expense_category)
{
return [
'id' => $this->encodePrimaryKey($expense_category->id),
'user_id' => $this->encodePrimaryKey($expense_category->user_id),
'name' => (string) $expense_category->name ?: '',
2021-01-05 05:41:43 +01:00
'color' => (string) $expense_category->color,
2020-10-13 07:02:12 +02:00
'is_deleted' => (bool) $expense_category->is_deleted,
'updated_at' => (int) $expense_category->updated_at,
'archived_at' => (int) $expense_category->deleted_at,
'created_at' => (int) $expense_category->created_at,
];
}
}