22 lines
425 B
PHP
Executable File
22 lines
425 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class LegacyCondominNominativo extends Model
|
|
{
|
|
protected $connection = 'gescon_import';
|
|
|
|
protected $table = 'vw_legacy_condomin_nominativi';
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'id_cond' => 'integer',
|
|
'cod_cond' => 'integer',
|
|
'perc_diritto_reale' => 'decimal:3',
|
|
];
|
|
}
|