sigd/app/Models/FilePengumuman.php

16 lines
297 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class FilePengumuman extends Model
{
use SoftDeletes;
protected $table = 'file_pengumuman';
protected $primaryKey = 'FilePengumumanId';
protected $guarded = [];
}