mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-18 15:50:50 +08:00
14 lines
255 B
PHP
14 lines
255 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class ExamProgress extends NexusModel
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = ['exam_id', 'uid', 'type_id', 'value'];
|
|
}
|