JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "TutorReview-20250627060848.php"
Full Path: /home2/yvrgircc/public_html/ariseskilltech.com/app/Models/TutorReview-20250627060848.php
File size: 410 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 TutorReview extends Model
{
use HasFactory;
protected $fillable = [
'tutor_id',
'student_id',
'rating',
'review',
];
public function review_to_user()
{
return $this->belongsTo(User::class,'student_id','id');
}
}