unioil-mobile-api/app/MpinCodes.php

39 lines
581 B
PHP

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