23 lines
335 B
PHP
Executable File
23 lines
335 B
PHP
Executable File
<?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',
|
|
];
|
|
}
|