29 lines
514 B
PHP
29 lines
514 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Berita extends Model
|
|
{
|
|
// Nama tabel
|
|
protected $table = 'berita';
|
|
|
|
// Nama primary key custom
|
|
protected $primaryKey = 'id_berita';
|
|
|
|
// Mass assignable fields
|
|
protected $fillable = [
|
|
'judul_berita',
|
|
'isi_berita',
|
|
'tanggal_berita',
|
|
'gambar_berita',
|
|
];
|
|
|
|
// Primary key auto increment
|
|
public $incrementing = true;
|
|
|
|
// Tipe primary key
|
|
protected $keyType = 'int';
|
|
}
|