<?php

namespace Lavalite\Gallery\Repositories\Eloquent;

use Lavalite\Gallery\Interfaces\GalleryRepositoryInterface;
use Litepie\Repository\Eloquent\BaseRepository;

class GalleryRepository extends BaseRepository implements GalleryRepositoryInterface
{


    public function boot()
    {
        $this->fieldSearchable = config('lavalite.gallery.gallery.search');

    }

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