AppointmentConfirmationDecision.php 242 B

12345678910111213
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Relations\HasOne;
  4. # use Illuminate\Database\Eloquent\Model;
  5. class AppointmentConfirmationDecision extends Model
  6. {
  7. protected $table = 'appointment_confirmation_decision';
  8. }