koel/app/Repositories/PlaylistRepository.php
2018-08-29 13:15:11 +07:00

22 lines
438 B
PHP

<?php
namespace App\Repositories;
use App\Models\Playlist;
use App\Repositories\Traits\ByCurrentUser;
use Illuminate\Support\Collection;
class PlaylistRepository extends AbstractRepository
{
use ByCurrentUser;
public function getModelClass(): string
{
return Playlist::class;
}
public function getAllByCurrentUser(): Collection
{
return $this->byCurrentUser()->orderBy('name')->get();
}
}