2015-02-27 09:48:33 -06:00
|
|
|
<?php namespace FireflyIII\Models;
|
|
|
|
|
2016-01-01 14:49:27 -06:00
|
|
|
use Carbon\Carbon;
|
|
|
|
use FireflyIII\User;
|
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2015-02-27 09:48:33 -06:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
2016-01-01 14:49:27 -06:00
|
|
|
* FireflyIII\Models\TransactionGroup
|
2015-02-27 09:48:33 -06:00
|
|
|
*
|
2016-01-01 14:49:27 -06:00
|
|
|
* @property integer $id
|
|
|
|
* @property Carbon $created_at
|
|
|
|
* @property Carbon $updated_at
|
|
|
|
* @property Carbon $deleted_at
|
|
|
|
* @property integer $user_id
|
|
|
|
* @property string $relation
|
|
|
|
* @property-read Collection|TransactionJournal[] $transactionjournals
|
|
|
|
* @property-read User $user
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
|
|
|
class TransactionGroup extends Model
|
|
|
|
{
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getDates()
|
|
|
|
{
|
|
|
|
return ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany
|
|
|
|
*/
|
|
|
|
public function transactionjournals()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany('FireflyIII\Models\TransactionJournal');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function user()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\User');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|