28 lines
1.4 KiB
PHP
28 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
/**
|
|
* @deprecated Use Gallery instead.
|
|
* @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
|
|
*/
|
|
class EntryGallery extends Gallery {}
|