Siopas Inventory PETI for ISTW Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
450 B

11 months ago
<?php
namespace App\Models;
11 months ago
use App\Traits\UUID;
11 months ago
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Factories\HasFactory;
11 months ago
class Kondisi_Peti extends Model
{
use HasFactory, SoftDeletes;
protected $table = 'kondisi_petis';
protected $fillable = [
10 months ago
'id',
'nama_kondisi',
'deskripsi_kondisi',
'created_by',
'updated_by',
];
11 months ago
}