Files
alrahma_sunday_school_api/app/Models/ClassProgressReport.php
T
2026-04-23 00:04:35 -04:00

63 lines
1.5 KiB
PHP

<?php
namespace App\Models;
use App\Models\BaseModel;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class ClassProgressReport extends BaseModel
{
use HasFactory;
protected $table = 'class_progress_reports';
// ✅ CI: useTimestamps = true (created_at/updated_at)
public $timestamps = true;
protected $fillable = [
'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 $casts = [
'class_section_id' => 'integer',
'teacher_id' => 'integer',
// change to 'datetime' if your columns are DATETIME
'week_start' => 'date',
'week_end' => 'date',
// If flags_json is JSON in DB, this makes it an array automatically
'flags_json' => 'array',
];
/* Optional relationships */
public function classSection()
{
return $this->belongsTo(ClassSection::class, 'class_section_id', 'class_section_id');
}
public function teacher()
{
return $this->belongsTo(User::class, 'teacher_id');
}
public function attachments()
{
return $this->hasMany(ClassProgressAttachment::class, 'report_id');
}
}