netgescon-day0/app/Models/Titolo.php

23 lines
335 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Titolo extends Model
{
protected $table = 'titoli';
protected $fillable = [
'nome',
'sigla',
'ordine',
'attivo',
];
protected $casts = [
'attivo' => 'boolean',
'ordine' => 'integer',
];
}