Files
RomhackPlaza/app/Traits/HasGallery.php

15 lines
262 B
PHP
Raw Normal View History

2026-06-10 11:04:26 +02:00
<?php
namespace App\Traits;
use App\Models\Gallery;
use Illuminate\Database\Eloquent\Relations\MorphMany;
trait HasGallery
{
public function gallery(): MorphMany
{
return $this->morphMany(Gallery::class, 'galleryable')->orderBy('id');
}
}