Files
RomhackPlaza/app/Models/EntryGallery.php

12 lines
157 B
PHP
Raw Normal View History

2026-05-20 18:25:15 +02:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class EntryGallery extends Model
{
protected $fillable = ['entry_id','image'];
}