<?php

namespace Litecms\Representative\Repositories\Eloquent;

use Litecms\Representative\Interfaces\RepresentativesRepositoryInterface;
use Litepie\Repository\Eloquent\BaseRepository;

class RepresentativesRepository extends BaseRepository implements RepresentativesRepositoryInterface
{


    public function boot()
    {
        $this->fieldSearchable = config('litecms.representative.representatives.model.search');

    }

    /**
     * Specify Model class name.
     *
     * @return string
     */
    public function model()
    {
        return config('litecms.representative.representatives.model.model');
    }
}