27 lines
500 B
PHP
27 lines
500 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* WorkSpace model stub for WorkDo v6.6 package compatibility.
|
|
* Packages reference App\Models\WorkSpace for multi-workspace scoping.
|
|
*/
|
|
class WorkSpace extends Model
|
|
{
|
|
protected $table = 'work_spaces';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'slug',
|
|
'created_by',
|
|
'is_active',
|
|
];
|
|
|
|
public function creator()
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
}
|