| Current Path : /var/www/html/performance.sumar.com.py/app/Models/ |
| Current File : /var/www/html/performance.sumar.com.py/app/Models/Enlace.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Enlace extends Model{
use HasFactory;
protected $table='enlaces';
protected $primaryKey='id';
public $timestamps='true';
protected $fillable=[
'email_evaluador',
'tipo',
'hash',
'link',
'nombre',
'apellido',
'fecha',
];
}