attendance card

This commit is contained in:
xiaomlove
2022-04-03 16:03:47 +08:00
parent 4172f7c07c
commit 9af8e5e442
100 changed files with 2806 additions and 65 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Models;
class AttendanceLog extends NexusModel
{
protected $table = 'attendance_logs';
protected $fillable = ['uid', 'points', 'date', 'is_retroactive'];
public $timestamps = true;
}