/home/awneajlw/.trash/app/Models/EducationLevel.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class EducationLevel extends Model
{
    protected $table = 'education_levels';
    
    protected $fillable = [
        'name'
    ];

    public $timestamps = true;
}