Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
55 righe
1018 B
55 righe
1018 B
<?php |
|
|
|
namespace App\Models\Main; |
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
class Tenant extends Model |
|
{ |
|
use HasFactory; |
|
|
|
/** |
|
* The connection name for the model. |
|
* |
|
* @var string|null |
|
*/ |
|
protected $connection = "mysql"; |
|
|
|
/** |
|
* The table associated with the model. |
|
* |
|
* @var string |
|
*/ |
|
protected $table = "b_enti"; |
|
|
|
/** |
|
* The primary key for the model. |
|
* |
|
* @var string |
|
*/ |
|
protected $primaryKey = 'codice'; |
|
|
|
/** |
|
* The attributes that should be mutated to dates. |
|
* |
|
* @deprecated Use the "casts" property |
|
* |
|
* @var array |
|
*/ |
|
protected $dates = ['data_richiesta_esportazione']; |
|
|
|
/** |
|
* The name of the "created at" column. |
|
* |
|
* @var string|null |
|
*/ |
|
const CREATED_AT = 'timestamp_creazione'; |
|
|
|
/** |
|
* The name of the "updated at" column. |
|
* |
|
* @var string|null |
|
*/ |
|
const UPDATED_AT = 'timestamp'; |
|
}
|
|
|