Files
api_arrahn/app/LogSession.php
T
2024-07-03 10:00:30 +08:00

26 lines
457 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class LogSession extends Model
{
protected $table = 'logusers';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['nama','kodcaw','nokp','taraf','email'];
public $timestamps = true;
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}