Files
RomhackPlaza/app/Traits/HasGallery.php
2026-06-16 16:21:43 +02:00

15 lines
280 B
PHP

<?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('order')->orderBy('id');
}
}