<?php

namespace App\Models;

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

class WorkerRatingAggregate extends Model
{
    use HasFactory;
    protected $table = 'worker_ratings_aggregate';
    protected $fillable = [
        'worker_id',
    	'average_rate',
    	'type',
    	'rates',
    ];
}
