27 lines
603 B
PHP
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',
|
|
];
|
|
}
|