Files

34 lines
556 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class BatchLel extends Model
{
protected $table = 'batchlel';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'tarikh',
'tarikh2',
'batchno',
'kodcaw',
't_daftar',
'masadari',
'masahingga'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}