<?php namespace Litematrimony\Profile\Repositories\Eloquent; use Litematrimony\Profile\Interfaces\ShortlistRepositoryInterface; use Litepie\Repository\Eloquent\BaseRepository; class ShortlistRepository extends BaseRepository implements ShortlistRepositoryInterface { public function boot() { $this->fieldSearchable = config('litematrimony.profile.shortlist.model.search'); } /** * Specify Model class name. * * @return string */ public function model() { return config('litematrimony.profile.shortlist.model.model'); } }