mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
14 lines
220 B
PHP
14 lines
220 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class AttendanceLog extends NexusModel
|
|
{
|
|
protected $table = 'attendance_logs';
|
|
|
|
protected $fillable = ['uid', 'points', 'date', 'is_retroactive'];
|
|
|
|
public $timestamps = true;
|
|
|
|
}
|