????

Your IP : 18.224.16.219


Current Path : /home/thenclexdoctor.com/public_html/app/Models/
Upload File :
Current File : /home/thenclexdoctor.com/public_html/app/Models/Notification.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Notification extends Model
{
    protected $table = 'notifications';
    public $timestamps = false;
    protected $dateFormat = 'U';
    protected $guarded = ['id'];

    static $AdminSender = 'admin';
    static $SystemSender = 'system';

    static $notificationsType = ['single', 'all_users', 'students', 'instructors', 'organizations', 'group', 'course_students'];

    public function user()
    {
        return $this->belongsTo('App\User', 'user_id', 'id');
    }

    public function senderUser()
    {
        return $this->belongsTo('App\User', 'sender_id', 'id');
    }

    public function group()
    {
        return $this->belongsTo('App\Models\Group', 'group_id', 'id');
    }

    public function webinar()
    {
        return $this->belongsTo('App\Models\Webinar', 'webinar_id', 'id');
    }

    public function notificationStatus()
    {
        return $this->hasOne('App\Models\NotificationStatus', 'notification_id', 'id');
    }
}

Page not found | The NCLEX Doctor

Page not found!

Sorry, this page is not available...