23 lines
387 B
PHP
23 lines
387 B
PHP
<?php
|
|
|
|
namespace App\Modules\Contabilita\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class CausaleBancaria extends Model
|
|
{
|
|
protected $table = 'contabilita_causali_bancarie';
|
|
|
|
protected $fillable = [
|
|
'banca',
|
|
'codice',
|
|
'interbancaria',
|
|
'descrizione',
|
|
'attivo',
|
|
];
|
|
|
|
protected $casts = [
|
|
'attivo' => 'boolean',
|
|
];
|
|
}
|