����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.22.194.224 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirm.gltechlimited.com/app/Models/ |
Upload File : |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Support\Str; class Instructor extends Model { use HasFactory; use SoftDeletes; protected $table = 'instructors'; protected $appends = ['cv_file_url']; protected $fillable = [ 'user_id', 'country_id', 'province_id', 'state_id', 'city_id', 'first_name', 'last_name', 'professional_title', 'phone_number', 'postal_code', 'address', 'about_me', 'social_link', 'slug', 'gender', 'cv_file', 'cv_filename', 'level_id', 'lat', 'organization_id', 'auto_content_approval', 'status', 'long', ]; public function getCvFileUrlAttribute() { if ($this->cv_file) { return getVideoFile($this->cv_file); } else { return asset('uploads/default/course.jpg'); } } public function user() { return $this->belongsTo(User::class, 'user_id'); } public function ranking_level() { return $this->belongsTo(RankingLevel::class, 'level_id'); } public function getFullNameAttribute($value) { return $this->first_name.' '.$this->last_name; } public function courses() { return $this->hasMany(Course::class, 'instructor_id'); } public function enrollments() { return $this->hasMany(Enrollment::class, 'owner_user_id', 'user_id'); } public function orders() { return $this->hasManyThrough(Order::class, Enrollment::class, 'owner_user_id', 'id', 'user_id', 'order_id'); } public function instructor_courses() { return $this->hasMany(CourseInstructor::class, 'instructor_id'); } public function publishedCourses() { return $this->hasMany(Course::class, 'instructor_id')->where('status', 1); } public function pendingCourses() { return $this->hasMany(Course::class, 'instructor_id')->where('status', 2); } public function country() { return $this->belongsTo(Country::class, 'country_id'); } public function state() { return $this->belongsTo(State::class, 'state_id'); } public function city() { return $this->belongsTo(City::class, 'city_id'); } public function certificates() { return $this->hasMany(Instructor_certificate::class, 'instructor_id'); } public function awards() { return $this->hasMany(Instructor_awards::class, 'instructor_id'); } public function getNameAttribute() { return $this->first_name .' '. $this->last_name; } public function scopePending($query) { return $query->where('status', 0); } public function scopeApproved($query) { return $query->where('status', 1); } public function scopeBlocked($query) { return $query->where('status', 2); } public function scopeConsultationAvailable($query) { return $query->where('consultation_available', 1); } public function skills() { return $this->belongsToMany(Skill::class); } protected static function boot() { parent::boot(); self::creating(function($model){ $model->uuid = Str::uuid()->toString(); }); } }