Felesleges változók kivéve

This commit is contained in:
Sándor Máté Magony
2025-04-11 13:12:32 +02:00
parent 2975cd91b1
commit 3f0465fb5a
15 changed files with 187 additions and 147 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';
}