2026-05-07 19:26:20 +07:00

27 lines
603 B
PHP

<?php
namespace App\Models;
// use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $connection = 'pgsql';
protected $table = 'public.loginuser_s';
public $timestamps = false;
protected $primaryKey = "id";
protected $guarded = [
'id',
];
}