JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "TutorCanTeach.php"

Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/app/Models/TutorCanTeach.php
File size: 496 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class TutorCanTeach extends Model
{
    use HasFactory;

    protected $table = 'tutor_can_teach';

    public function category_to_tutorCategory()
    {
        return $this->belongsTo(TutorCategory::class,'category_id','id');
    }

    public function category_to_tutorSubjects()
    {
        return $this->belongsTo(TutorSubject::class,'subject_id','id');
    }

}