File: /mnt/data/ghayatcom/ghayatcom-api/app/ConsultationDetail.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ConsultationDetail extends Model
{
protected $fillable = [
'user_id', 'home_visit_currency_code', 'home_visit_price', 'on_demand_currency_code', 'on_demand_price', 'schedule_appointment_currency_code', 'schedule_appointment_price', 'preferred_online_consultations', 'preferred_call_languages', 'home_visit_available_status', 'home_visit_time_out', 'on_demand_available_status', 'on_demand_time_out', 'schedule_appointment_date', 'schedule_appointment_start_time', 'schedule_appointment_end_time', 'schedule_appointment_duration', 'schedule_appointment_between_time',
];
}