File: /var/www/html/appointmentbook.me/wp-content/plugins/booknetic/app/Models/Timesheet.php
<?php
namespace BookneticApp\Models;
use BookneticApp\Models\Location;
use BookneticApp\Models\Service;
use BookneticApp\Models\Staff;
use BookneticApp\Providers\DB\Model;
use BookneticApp\Providers\DB\MultiTenant;
class Timesheet extends Model
{
use MultiTenant;
protected static $tableName = 'timesheet';
public static $relations = [
'service' => [ Service::class, 'id', 'service_id' ],
'staff' => [ Staff::class, 'id', 'staff_id' ]
];
}