invoiceninja/app/models/Timesheet.php
2014-10-06 03:00:31 +02:00

23 lines
341 B
PHP
Executable File

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