koel/app/Repositories/AlbumRepository.php
2020-12-23 12:03:53 +01:00

21 lines
414 B
PHP

<?php
namespace App\Repositories;
use App\Models\Song;
use App\Repositories\Traits\Searchable;
class AlbumRepository extends AbstractRepository
{
use Searchable;
/** @return array<int> */
public function getNonEmptyAlbumIds(): array
{
return Song::select('album_id')
->groupBy('album_id')
->get()
->pluck('album_id')
->toArray();
}
}