29 lines
502 B
PHP
29 lines
502 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Review extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'employer_id',
|
|
'worker_id',
|
|
'rating',
|
|
'comment',
|
|
];
|
|
|
|
public function employer()
|
|
{
|
|
return $this->belongsTo(User::class, 'employer_id');
|
|
}
|
|
|
|
public function worker()
|
|
{
|
|
return $this->belongsTo(Worker::class, 'worker_id');
|
|
}
|
|
}
|