2018-01-30 19:58:55 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ExpenseCategory.
|
|
|
|
*/
|
|
|
|
class ProposalCategory extends EntityModel
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
use PresentableTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
2018-01-31 13:21:33 +01:00
|
|
|
'name',
|
2018-01-30 19:58:55 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
//protected $presenter = 'App\Ninja\Presenters\ProjectPresenter';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getEntityType()
|
|
|
|
{
|
|
|
|
return ENTITY_PROPOSAL_CATEGORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getRoute()
|
|
|
|
{
|
2018-01-31 13:21:33 +01:00
|
|
|
return "/proposals/categories/{$this->public_id}";
|
2018-01-30 19:58:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function account()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Account');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDisplayName()
|
|
|
|
{
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Proposal::creating(function ($project) {
|
|
|
|
$project->setNullValues();
|
|
|
|
});
|
|
|
|
|
|
|
|
Proposal::updating(function ($project) {
|
|
|
|
$project->setNullValues();
|
|
|
|
});
|
|
|
|
*/
|