Files
alrahma_sunday_school/app/Models/ClassProgressReportModel.php
T
2026-02-10 22:11:06 -05:00

34 lines
748 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class ClassProgressReportModel extends Model
{
protected $table = 'class_progress_reports';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $allowedFields = [
'class_section_id',
'teacher_id',
'week_start',
'week_end',
'subject',
'unit_title',
'covered',
'homework',
'assessment',
'status',
'status_notes',
'class_notes',
'next_week_plan',
'support_needed',
'flags_json',
'attachment_path',
];
protected $useTimestamps = true;
protected $createdField = 'created_at';
protected $updatedField = 'updated_at';
}