2020-02-15 10:06:30 +01:00
|
|
|
<?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;
|
2020-02-27 00:32:44 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-02-15 10:06:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class DesignTransformer.
|
|
|
|
*/
|
|
|
|
class DesignTransformer extends EntityTransformer
|
|
|
|
{
|
|
|
|
use MakesHash;
|
2020-02-27 00:32:44 +01:00
|
|
|
use SoftDeletes;
|
2020-02-15 10:06:30 +01:00
|
|
|
/**
|
|
|
|
* @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,
|
2020-02-27 00:32:44 +01:00
|
|
|
'updated_at' => (int)$design->updated_at,
|
|
|
|
'archived_at' => (int)$design->deleted_at,
|
|
|
|
'created_at' => (int)$design->created_at,
|
2020-02-15 10:06:30 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|