<?php

namespace App\Models;

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

class WorkerRating extends Model
{
    use HasFactory;
    protected $table = 'worker_ratings';
    protected $fillable = [
        'loan_approved_history_id',
    	'worker_id',
    	'company_id',
    	'rate',
    	'rated_by',
    	'message',
    	'type',
    ];
}
