2014-06-29 22:12:33 +02:00
|
|
|
<?php
|
2014-09-04 08:31:45 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model as Eloquent;
|
2014-12-06 12:12:55 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletingTrait;
|
|
|
|
use Watson\Validating\ValidatingTrait;
|
2014-12-24 12:32:18 +01:00
|
|
|
|
2014-12-13 21:59:02 +01:00
|
|
|
/**
|
|
|
|
* Class TransactionCurrency
|
|
|
|
*/
|
2014-07-09 13:35:33 +02:00
|
|
|
class TransactionCurrency extends Eloquent
|
|
|
|
{
|
2014-06-29 22:12:33 +02:00
|
|
|
|
2014-12-06 12:12:55 +01:00
|
|
|
use SoftDeletingTrait, ValidatingTrait;
|
|
|
|
|
2014-12-24 12:32:18 +01:00
|
|
|
protected $fillable = ['name', 'symbol', 'code'];
|
2014-12-24 14:02:21 +01:00
|
|
|
protected $rules = [
|
|
|
|
'code' => 'required|alpha|between:3,3|min:3|max:3',
|
|
|
|
'name' => 'required|between:3,48|min:3|max:48',
|
|
|
|
'symbol' => 'required|between:1,8|min:1|max:8',
|
2014-12-24 12:32:18 +01:00
|
|
|
];
|
|
|
|
|
2014-08-10 18:22:42 +02:00
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2014-11-21 11:11:52 +01:00
|
|
|
public function transactionJournals()
|
2014-07-09 13:35:33 +02:00
|
|
|
{
|
2014-06-29 22:12:33 +02:00
|
|
|
return $this->hasMany('TransactionJournal');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|