MIF_E31210536/app/Models/Documentation.php

15 lines
286 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Documentation extends Model
{
protected $table = 'documentation';
protected $fillable = ['judul', 'deskripsi', 'foto', 'jenis'];
// Add any additional model-specific code or relationships here
}