1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Transformers/DesignTransformer.php

59 lines
1.4 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Transformers;
use App\Models\Design;
use App\Utils\Traits\MakesHash;
2020-02-27 00:32:44 +01:00
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class DesignTransformer.
*/
class DesignTransformer extends EntityTransformer
{
use MakesHash;
2020-02-27 00:32:44 +01:00
use SoftDeletes;
/**
* @var array
*/
protected $defaultIncludes = [
];
/**
* @var array
*/
protected $availableIncludes = [
];
/**
* @param Design $design
*
* @return array
*/
public function transform(Design $design)
{
return [
'id' => (string) $this->encodePrimaryKey($design->id),
'name' => (string) $design->name,
'is_custom' => (bool) $design->is_custom,
'is_active' => (bool) $design->is_active,
'design' => $design->design,
'updated_at' => (int) $design->updated_at,
'archived_at' => (int) $design->deleted_at,
'created_at' => (int) $design->created_at,
'is_deleted' => (bool) $design->is_deleted,
2021-07-18 12:10:55 +02:00
'is_free' => ($design->id <= 4) ? true : false,
];
}
}