mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-05 13:44:58 -06:00
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Shared\SingleTableInheritanceEntity;
|
|
use Illuminate\Database\Eloquent\SoftDeletingTrait;
|
|
use Watson\Validating\ValidatingTrait;
|
|
|
|
/**
|
|
* Class Component
|
|
*/
|
|
class Component extends SingleTableInheritanceEntity
|
|
{
|
|
|
|
public static $rules
|
|
= [
|
|
'user_id' => 'exists:users,id|required',
|
|
'name' => 'required|between:1,100|alphabasic',
|
|
'class' => 'required',
|
|
];
|
|
// @codingStandardsIgnoreStart
|
|
protected $dates = ['deleted_at', 'created_at', 'updated_at'];
|
|
protected $fillable = ['name', 'user_id'];
|
|
protected $subclassField = 'class';
|
|
protected $table = 'components';
|
|
// @codingStandardsIgnoreEnd
|
|
use SoftDeletingTrait, ValidatingTrait;
|
|
|
|
/**
|
|
* TODO remove this method in favour of something in the FireflyIII libraries.
|
|
*
|
|
* @return Carbon
|
|
*/
|
|
public function lastActionDate()
|
|
{
|
|
$transaction = $this->transactionjournals()->orderBy('updated_at', 'DESC')->first();
|
|
if (is_null($transaction)) {
|
|
return null;
|
|
}
|
|
|
|
return $transaction->date;
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
*/
|
|
public function transactionjournals()
|
|
{
|
|
return $this->belongsToMany('TransactionJournal', 'component_transaction_journal', 'component_id');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
*/
|
|
public function transactions()
|
|
{
|
|
return $this->belongsToMany('Transaction');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('User');
|
|
}
|
|
|
|
}
|