doctor-appointment-system/app/Models/AvailabilityModel.php
2026-05-08 12:22:08 +05:30

20 lines
285 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
class AvailabilityModel extends Model
{
protected $table = 'doctor_availability';
protected $primaryKey = 'id';
protected $allowedFields = [
'doctor_id',
'batch_id',
'day_number',
'start_time',
'end_time',
'status'
];
}