PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
contact
/
src
/
Repositories
/
Eloquent
<?php namespace Botble\Contact\Repositories\Eloquent; use Botble\Contact\Enums\ContactStatusEnum; use Botble\Contact\Repositories\Interfaces\ContactInterface; use Botble\Support\Repositories\Eloquent\RepositoriesAbstract; class ContactRepository extends RepositoriesAbstract implements ContactInterface { /** * {@inheritDoc} */ public function getUnread($select = ['*']) { $data = $this->model ->where('status', ContactStatusEnum::UNREAD) ->select($select) ->orderBy('created_at', 'DESC') ->get(); $this->resetModel(); return $data; } /** * {@inheritDoc} */ public function countUnread() { $data = $this->model->where('status', ContactStatusEnum::UNREAD)->count(); $this->resetModel(); return $data; } }
[-] ContactReplyRepository.php
[edit]
[+]
..
[-] ContactRepository.php
[edit]