bhp.php 345 Bytes
<?php

namespace App\Models;

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

class Bhp extends Model
{
    use HasFactory;
    protected $table = 'bhps';
    protected $primaryKey = 'id_bhp';

    protected $fillable = [
        'foto_bhp', 'nama_bhp', 'tipe', 'stok', 'no_inventaris', 
    ];
}