Files
RomhackPlaza/app/Models/EntryGallery.php

28 lines
1.4 KiB
PHP
Raw Permalink Normal View History

2026-05-20 18:25:15 +02:00
<?php
namespace App\Models;
2026-06-10 11:04:26 +02:00
/**
* @deprecated Use Gallery instead.
2026-06-16 16:21:43 +02:00
* @property int $id
* @property string $galleryable_type
* @property int $galleryable_id
* @property string $image
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $galleryable
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery newQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery query()
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereGalleryableId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereGalleryableType($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereImage($value)
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereUpdatedAt($value)
* @property int $order
* @method static \Illuminate\Database\Eloquent\Builder<static>|EntryGallery whereOrder($value)
* @mixin \Eloquent
2026-06-10 11:04:26 +02:00
*/
class EntryGallery extends Gallery {}