25 lines
401 B
PHP
Executable File
25 lines
401 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RegimeFiscale extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'regimi_fiscali';
|
|
|
|
protected $fillable = [
|
|
'codice',
|
|
'descrizione',
|
|
'note',
|
|
'attivo',
|
|
];
|
|
|
|
protected $casts = [
|
|
'attivo' => 'boolean',
|
|
];
|
|
}
|