AppSession.php 376 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class AppSession extends Model
  5. {
  6. protected $table = "app_session";
  7. public function pro()
  8. {
  9. return $this->belongsTo(Pro::class);
  10. }
  11. public function meetingParticipant()
  12. {
  13. return $this->belongsTo(MeetingParticipant::class, 'current_meeting_participant_id');
  14. }
  15. }