unioil-loyalty-app/app/MobileAnalytics.php

53 lines
841 B
PHP

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