2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
2016-11-29 18:47:26 +01:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
|
|
|
|
|
|
/**
|
2017-01-30 20:40:43 +01:00
|
|
|
* Class ExpenseCategory.
|
2016-11-29 18:47:26 +01:00
|
|
|
*/
|
|
|
|
class Project extends EntityModel
|
|
|
|
{
|
|
|
|
// Expense Categories
|
|
|
|
use SoftDeletes;
|
|
|
|
use PresentableTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
2017-10-17 12:57:20 +02:00
|
|
|
'task_rate',
|
2016-11-29 18:47:26 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $presenter = 'App\Ninja\Presenters\EntityPresenter';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getEntityType()
|
|
|
|
{
|
|
|
|
return ENTITY_PROJECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getRoute()
|
|
|
|
{
|
|
|
|
return "/projects/{$this->public_id}/edit";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function client()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Models\Client')->withTrashed();
|
|
|
|
}
|
2017-11-30 12:46:30 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function tasks()
|
|
|
|
{
|
|
|
|
return $this->hasMany('App\Models\Task');
|
|
|
|
}
|
2016-11-29 18:47:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Project::creating(function ($project) {
|
|
|
|
$project->setNullValues();
|
|
|
|
});
|
|
|
|
|
|
|
|
Project::updating(function ($project) {
|
|
|
|
$project->setNullValues();
|
|
|
|
});
|