Model: kategori

 avatar
user_3285855
php
2 years ago
267 B
6
Indexable
<?php

namespace App\Models;

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

class Kategori extends Model
{
    use HasFactory;

    protected $table = 'kategori';

    protected $fillable = [
        'nama',
    ];
}
Editor is loading...
Leave a Comment