Files
2022-02-02 02:59:15 +08:00

27 lines
435 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pelelong extends Model
{
protected $table = 'pelelong';
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 = [];
}