<?php

namespace Bixo\Activity\Repositories\Eloquent;

use Bixo\Activity\Interfaces\CallRepositoryInterface;
use Litepie\Repository\Eloquent\BaseRepository;

class CallRepository extends BaseRepository implements CallRepositoryInterface
{


    public function boot()
    {
        $this->fieldSearchable = config('bixo.activity.call.model.search');

    }

    /**
     * Specify Model class name.
     *
     * @return string
     */
    public function model()
    {
        return config('bixo.activity.call.model.model');
    }
}