Files
api_arrahn/app/RequestTeller.php
T
hafifierahman cb4410f13d aliran tunai
2021-01-19 09:51:44 +08:00

27 lines
488 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class RequestTeller extends Model
{
protected $table = 'requestteller';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['no','kodlaluan','modal','serahan','tarikh','update','kodcaw'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
public $timestamps = false;
}