* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com) */ class CustomerDocumentRepository extends Repository { /** * Specify Model class name * * @return mixed */ function model() { return 'Webkul\CustomerDocument\Contracts\CustomerDocument'; } /** * get All Documents * * @param int $id * @return array */ function getDocuments($id) { return $this->model ->whereIn('customer_id', [$id, 0]) ->where('status', '1') ->get(); } }