<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class HistorisPerhitungan extends Model
{
protected $table = 'historis_perhitungan';
protected $fillable = ['nama_lahan', 'nilai_akhir', 'periode', 'user_id'];
}