mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 05:16:49 -04:00
16 lines
256 B
PHP
16 lines
256 B
PHP
<?php
|
|
|
|
namespace Modules\MLMDownline\Entities;
|
|
|
|
use App\Models\Staff;
|
|
|
|
class MLMDownlineStaff extends Staff
|
|
{
|
|
protected $table = 'staff';
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(MLMDownlineUser::class);
|
|
}
|
|
}
|