Files
nexusphp/app/Models/AttendanceLog.php

14 lines
220 B
PHP
Raw Normal View History

2022-04-03 16:03:47 +08:00
<?php
namespace App\Models;
class AttendanceLog extends NexusModel
{
protected $table = 'attendance_logs';
protected $fillable = ['uid', 'points', 'date', 'is_retroactive'];
public $timestamps = true;
}