Current File : /home/exataengenharia/public_html/app/Models/Information.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Contracts\Routing\UrlRoutable;

class Information extends Model
{
 
    use HasFactory;
    protected $table = 'informations'; // nome da tabela

    protected $fillable = ['residence', 'monthly_generation', 'annual_savings', 'path'];

}