<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Pengumuman extends Model
{
    protected $table = 'pengumuman';
    protected $primaryKey = 'id';
    public $incrementing = false;

    protected $fillable = [
        'id', 'pengumuman', 'file', 'status', 'created_at', 'updated_at'
    ];

}