|
<?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 = [];
|
|
}
|