AppointmentConfirmationDecision.php 361 B

1234567891011121314151617
  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. public function session() {
  9. return $this->hasOne(AppSession::class, 'id', 'created_by_session_id');
  10. }
  11. }