Majdnem kész

This commit is contained in:
Sándor Máté Magony
2025-04-24 15:38:31 +02:00
parent db245545eb
commit 2d71603962
121 changed files with 3870 additions and 2601 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Keruletek extends Model
{
public function wcAdatok(){
return $this->hasMany(WcAdatok::class);
}
protected $table = 'keruletek';
}