1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Transformers/DesignTransformer.php
David Bomba 43e57d0117
Fixes for self-update (#3514)
* minor fix for payment notifications

* styleci

* Limit Self updating to self hosters only
:

* Fixes for designs

* Minor fixes for self-update
2020-03-21 16:37:30 +11:00

58 lines
1.3 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Transformers;
use App\Models\Design;
use App\Utils\Traits\MakesHash;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class DesignTransformer.
*/
class DesignTransformer extends EntityTransformer
{
use MakesHash;
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,
];
}
}