invoiceninja/app/models/Project.php

19 lines
249 B
PHP
Raw Normal View History

<?php
class Project extends Eloquent
{
public $timestamps = false;
protected $softDelete = false;
public function account()
{
return $this->belongsTo('Account');
}
public function user()
{
return $this->belongsTo('User');
}
}