Files
glastree/app/Models/Diocesi.php
T

17 lines
368 B
PHP
Raw Normal View History

2026-05-26 08:14:29 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
2026-06-23 08:05:51 +02:00
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
2026-05-26 08:14:29 +02:00
class Diocesi extends Model
{
protected $table = 'diocesi';
protected $fillable = ['nome', 'regione'];
2026-06-23 08:05:51 +02:00
public function gruppi(): BelongsToMany
2026-05-26 08:14:29 +02:00
{
2026-06-23 08:05:51 +02:00
return $this->belongsToMany(Gruppo::class, 'diocesi_gruppo');
2026-05-26 08:14:29 +02:00
}
}