mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-30 15:05:35 -05:00
19 lines
249 B
PHP
19 lines
249 B
PHP
<?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');
|
|
}
|
|
}
|
|
|