19 lines
397 B
PHP
19 lines
397 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class KatArtikel extends Model
|
|
{
|
|
protected $table = 'kategori_artikel';
|
|
protected $primaryKey = 'id_ktg';
|
|
protected $fillable = [
|
|
'id_ktg', 'kategori_artikel',
|
|
];
|
|
public function artikels(){
|
|
return $this->hasMany(Artikel::class);
|
|
}
|
|
}
|