Files
api_arrahn/app/RequestTeller.php
hafifierahman a3d127e749 fix skit2
2021-03-28 16:47:38 +08:00

28 lines
700 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','masa','update','kodcaw','bd1','bd5','bd10','bd20','bd50','bd100','txtring1','txtring5','txtring10','txtring20',
'txtring50','txtring100','txtring1000','txtsen1','txtsen5','txtsen10','txtsen20','txtsen50'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
public $timestamps = false;
}