2020-01-20 11:10:33 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
2020-01-20 11:10:33 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Project.
|
2023-03-08 08:33:42 +01:00
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int|null $client_id
|
|
|
|
* @property string $name
|
|
|
|
* @property string $task_rate
|
|
|
|
* @property string|null $due_date
|
|
|
|
* @property string|null $private_notes
|
|
|
|
* @property string $budgeted_hours
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property string|null $public_notes
|
|
|
|
* @property int $is_deleted
|
|
|
|
* @property string|null $number
|
|
|
|
* @property string $color
|
|
|
|
* @property-read \App\Models\Client|null $client
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read int|null $documents_count
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read Project|null $project
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Task> $tasks
|
|
|
|
* @property-read int|null $tasks_count
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @property-read \App\Models\Vendor|null $vendor
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\ProjectFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project filter(\App\Filters\QueryFilters $filters)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereAssignedUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereBudgetedHours($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereClientId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereColor($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCustomValue1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCustomValue2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCustomValue3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereCustomValue4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereDueDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereIsDeleted($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereName($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project wherePrivateNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project wherePublicNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereTaskRate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|Project withoutTrashed()
|
|
|
|
* @mixin \Eloquent
|
2020-01-20 11:10:33 +01:00
|
|
|
*/
|
|
|
|
class Project extends BaseModel
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
use PresentableTrait;
|
2020-10-08 00:25:39 +02:00
|
|
|
use Filterable;
|
2020-10-28 11:10:49 +01:00
|
|
|
|
2020-01-20 11:10:33 +01:00
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
2020-10-08 00:25:39 +02:00
|
|
|
'client_id',
|
2020-01-20 11:10:33 +01:00
|
|
|
'task_rate',
|
|
|
|
'private_notes',
|
2020-10-08 00:25:39 +02:00
|
|
|
'public_notes',
|
2020-01-20 11:10:33 +01:00
|
|
|
'due_date',
|
|
|
|
'budgeted_hours',
|
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
2020-10-08 00:25:39 +02:00
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
2020-10-29 01:09:51 +01:00
|
|
|
'assigned_user_id',
|
2021-01-05 05:41:43 +01:00
|
|
|
'color',
|
2021-03-20 01:16:29 +01:00
|
|
|
'number',
|
2020-01-21 01:32:34 +01:00
|
|
|
];
|
2020-01-20 11:10:33 +01:00
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
2020-01-20 11:10:33 +01:00
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @return BelongsTo
|
2020-01-20 11:10:33 +01:00
|
|
|
*/
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function client()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2022-04-28 05:09:17 +02:00
|
|
|
public function vendor()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Vendor::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function project()
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
return $this->belongsTo(self::class)->withTrashed();
|
2022-04-28 05:09:17 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 23:34:02 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2021-02-16 10:02:33 +01:00
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
|
|
|
}
|
2021-02-24 03:12:23 +01:00
|
|
|
|
|
|
|
public function tasks()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Task::class);
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2022-04-06 02:38:01 +02:00
|
|
|
public function translate_entity()
|
|
|
|
{
|
|
|
|
return ctrans('texts.project');
|
|
|
|
}
|
2020-01-20 11:10:33 +01:00
|
|
|
}
|