mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
43e57d0117
* minor fix for payment notifications * styleci * Limit Self updating to self hosters only : * Fixes for designs * Minor fixes for self-update
41 lines
837 B
PHP
41 lines
837 B
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\Models;
|
|
|
|
use App\Models\Filterable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Design extends BaseModel
|
|
{
|
|
use Filterable;
|
|
use SoftDeletes;
|
|
|
|
protected $casts = [
|
|
'design' => 'object',
|
|
'deleted_at' => 'timestamp',
|
|
'updated_at' => 'timestamp',
|
|
'created_at' => 'timestamp',
|
|
];
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'design',
|
|
'is_active',
|
|
];
|
|
|
|
public function company()
|
|
{
|
|
return $this->belongsTo(Company::class);
|
|
}
|
|
}
|