<?php
namespace App\Models;
/**
* Class RekUser
*
* @property int id
* @property string site
* @property string name
* @property string color
* @property int bold
* @property int user_id
* @property int created_at
* @property int deleted_at
*/
class RekUser extends BaseModel
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'rekuser';
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}