Google Authenticator

This commit is contained in:
xiaomlove
2021-06-10 21:07:20 +08:00
parent 37e0d74bae
commit 3bb15d6a41
17 changed files with 339 additions and 23 deletions

12
app/Models/Attendance.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App\Models;
class Attendance extends NexusModel
{
protected $table = 'attendance';
protected $casts = [
'added' => 'datetime',
];
}