unioil-mobile-api/app/LcardActionLogs.php

53 lines
854 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LcardActionLogs extends Model
{
/**
* Table name of model
*
* @var string
*/
protected $table = 'lcard_action_logs';
/**
* Primary key field name of table
*
* @var string
*/
protected $primaryKey = 'lactivity_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 = ['created_at'];
/**
* Enable / Disable timestamp saving
*
* @var array
*/
public $timestamps = false;
}