b8708f086e
feat: server resources are now looks better
16 lines
231 B
PHP
16 lines
231 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ProjectSetting extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
public function project()
|
|
{
|
|
return $this->belongsTo(Project::class);
|
|
}
|
|
}
|