2014-06-29 15:12:33 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
class TransactionType extends Eloquent {
|
|
|
|
public function transactionJournals() {
|
|
|
|
return $this->hasMany('TransactionJournal');
|
|
|
|
}
|
|
|
|
|
2014-07-09 06:35:33 -05:00
|
|
|
public static $factory = [
|
|
|
|
'type' => 'string'
|
|
|
|
];
|
|
|
|
|
2014-06-29 15:12:33 -05:00
|
|
|
}
|