unioil-loyalty-app/app/OtpLogs.php

45 lines
694 B
PHP
Executable File

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class OtpLogs extends Model
{
/**
* Table name of model
*
* @var string
*/
protected $table = 'otp_logs';
/**
* Primary key field name of table
*
* @var string
*/
protected $primaryKey = 'otplog_id';
/**
* Additional fields from other connected tables
*
* @var array
*/
protected $appends = [];
/**
* The attributes that should be hidden for arrays.
*
* @var array
*/
protected $hidden = [];
/**
* Enable / Disable timestamp saving
*
* @var array
*/
public $timestamps = false;
}