Files
alrahma_sunday_school_api/app/Models/ClassPreparationLog.php
T
2026-03-05 12:29:37 -05:00

18 lines
348 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ClassPreparationLog extends Model
{
protected $table = 'class_preparation_log';
protected $fillable = [
'class_section_id',
'class_section',
'school_year',
'prep_data',
'created_at',
];
public $timestamps = false;
}