Learner\Repositories\Eloquent\NewsletterRepository::findAll PHP 메소드

findAll() 공개 메소드

Find all newsletter.
public findAll ( ) : Illuminate\Database\Eloquent\Collection
리턴 Illuminate\Database\Eloquent\Collection
    public function findAll()
    {
        return $this->model->orderBy('created_at', 'DESC')->get();
    }