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.
68 righe
1.3 KiB
68 righe
1.3 KiB
<?php |
|
|
|
namespace App\Models\Main; |
|
|
|
use App\Models\Main\Comunicazioni; |
|
use Illuminate\Database\Eloquent\Model; |
|
use Illuminate\Database\Eloquent\Relations\HasMany; |
|
use Illuminate\Database\Eloquent\Factories\HasFactory; |
|
|
|
class Pec 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_pec"; |
|
|
|
/** |
|
* The primary key for the model. |
|
* |
|
* @var string |
|
*/ |
|
protected $primaryKey = 'codice'; |
|
|
|
/** |
|
* 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'; |
|
|
|
/** |
|
* Ottieni l'ente che possiede questa pec |
|
* |
|
* @return void |
|
*/ |
|
public function ente() |
|
{ |
|
$this->belongsTo("App\Models\Main\Enti", "codice_ente", "codice"); |
|
} |
|
|
|
/** |
|
* Ottieni tutte le comunicazioni relative alla pec |
|
* |
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany |
|
*/ |
|
public function comunicazioni(): HasMany |
|
{ |
|
return $this->hasMany(Comunicazioni::class, 'codice_pec', 'codice'); |
|
} |
|
}
|
|
|