<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class WorkAreaExpertise extends Model
{
    protected $table = 'work_areas_expertise';

    protected $fillable = 
    [
        'expertise_id', 
        'work_area_id'
    ];
}
