first commit

This commit is contained in:
Simon Pocrnjič
2024-10-28 21:08:16 +01:00
commit 90a5858320
199 changed files with 21177 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Segment extends Model
{
/** @use HasFactory<\Database\Factories\SegmentFactory> */
use HasFactory;
public function contracts(): BelongsToMany {
return $this->belongsToMany(\App\Models\Contract::class);
}
}