Files
api_arrahn/app/BatchLel.php
T
2022-11-16 06:55:06 +08:00

31 lines
494 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'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}