mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 20:40:49 +08:00
15 lines
248 B
PHP
15 lines
248 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Attendance extends NexusModel
|
|
{
|
|
protected $table = 'attendance';
|
|
|
|
protected $fillable = ['uid', 'added', 'points', 'days', 'total_days'];
|
|
|
|
protected $casts = [
|
|
'added' => 'datetime',
|
|
];
|
|
}
|