22 lines
341 B
PHP
22 lines
341 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Artikel extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'artikel';
|
|
|
|
protected $fillable = [
|
|
'judul',
|
|
'kategori',
|
|
'image',
|
|
'penulis',
|
|
'content',
|
|
];
|
|
}
|