2023-03-27 08:44:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2023-06-15 07:15:41 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class ProjectSetting extends Model
|
2023-03-27 08:44:31 +00:00
|
|
|
{
|
2024-02-16 20:56:38 +00:00
|
|
|
protected $guarded = [];
|
|
|
|
|
|
|
|
public function project()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class);
|
|
|
|
}
|
2023-03-27 08:44:31 +00:00
|
|
|
}
|