<?php
 
namespace App\Models;
 
use Illuminate\Database\Eloquent\Model;
 
class Barang extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'tbl_barang';
}