MIELICIUS / app / Models / Bahan.php
Bahan.php
Raw
<?php

namespace App\Models;

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

class Bahan extends Model
{
    use HasFactory;

    protected $primaryKey = 'idbahan';

    protected $fillable = [
        'kodebahan',
        'namabahan',
        'hargabahan',
        'stockbahan',
        'satuanbahan',
    ];
}