sibanu_web/app/Models/Barang.php

15 lines
227 B
PHP
Raw Permalink Normal View History

2022-08-20 13:21:23 +07:00
<?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';
}