<?php

namespace App;

class ConsultationDetail extends BaseModel
{
    protected $table = 'consultation_details';

    protected $fillable = ['id', 'fortune_teller_id', 'consultation_id', 'created_at', 'updated_at'];
}
