<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
public $timestamps = false;
protected $table = "tbl_user";
protected $fillable = [
'FirstName', 'LastName', 'Email', 'Mobile', 'Password'
];
}