Files

25 lines
484 B
PHP

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