first commit

This commit is contained in:
2025-03-27 12:25:27 +00:00
commit 25428dbd31
261 changed files with 23580 additions and 0 deletions

16
app/Models/Service.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Service extends Model
{
protected $guarded = [];
public function server(): BelongsTo
{
return $this->belongsTo(Server::class);
}
}