Files
2024-03-14 09:28:12 +08:00

27 lines
429 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Jemas extends Model
{
protected $table = 'jemas';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
// protected $fillable = [
// ];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}