mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
29 lines
891 B
PHP
29 lines
891 B
PHP
<?php
|
|
|
|
use LaravelBook\Ardent\Ardent;
|
|
|
|
/**
|
|
* TransactionType
|
|
*
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property string $type
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|\TransactionJournal[] $transactionJournals
|
|
* @method static \Illuminate\Database\Query\Builder|\TransactionType whereId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\TransactionType whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\TransactionType whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\TransactionType whereType($value)
|
|
*/
|
|
class TransactionType extends Ardent
|
|
{
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function transactionJournals()
|
|
{
|
|
return $this->hasMany('TransactionJournal');
|
|
}
|
|
|
|
}
|