File: /var/www/vhosts/uat-api.tsprojects.net/admin.plotterbox.tsprojects.net/app/Models/Admin.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class Admin extends Model
{
use HasFactory, SoftDeletes;
protected $table = 'tblAdmins';
public static $snakeAttributes = false;
protected $fillable = ['firstName', 'secondName', 'info' , 'type', 'userId', 'address', 'email', 'phone', 'active'];
}