????

Your IP : 18.218.155.110


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

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

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

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

    public function registrationPackage()
    {
        return $this->belongsTo('App\Models\RegistrationPackage', 'package_id', 'id');
    }


    public function sendNotificationToUser($status)
    {
        $notifyOptions = [
            '[u.role]' => $this->role == 'teacher' ? trans('admin/main.instructor') : trans('admin/main.organization')
        ];

        if ($status == 'reject') {
            sendNotification("become_instructor_request_rejected", $notifyOptions, $this->user_id);
        } else {
            sendNotification("become_instructor_request_approved", $notifyOptions, $this->user_id);
        }
    }
}

Page not found | The NCLEX Doctor

Page not found!

Sorry, this page is not available...