unioil-mobile-api/app/SystemPreference.php

38 lines
596 B
PHP

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