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