/home2/mshostin/www/app/TransactionType.php
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class TransactionType extends Model
{
    protected $fillable = ['type', 'description'];
    public function transactions() {
        return $this->hasMany('App\Transaction');
    }
}