Files
Sio-Back/app/Models/Parametro.php
2025-12-26 17:21:11 -08:00

70 lines
1.2 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Parametro extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'parametros';
/**
* The table primary key.
*
* @var string
*/
//protected $primaryKey = 'id';
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [];
/**
* Indicates if the primary key is autoincrement.
*
* @var bool
*/
public $incrementing = false;
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that should be filleable for arrays.
*
* @var array
*
* $guarded = [] or $filleable = []
*/
protected $guarded = [];
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'llave', 'valor'
];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [];
}