17 lines
368 B
PHP
17 lines
368 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
|
|
class Diocesi extends Model
|
|
{
|
|
protected $table = 'diocesi';
|
|
protected $fillable = ['nome', 'regione'];
|
|
|
|
public function gruppi(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Gruppo::class, 'diocesi_gruppo');
|
|
}
|
|
} |