add click event on visu-carto and visu-langue and update the url with the selected element as filter parameter
<?php
namespace CorpusParole\Repositories;
use CorpusParole\Models\Document;
interface DocumentRepository {
public function all();
public function get($id);
public function save(Document $doc);
/**
* Paginate all document as a paginator.
*
* @param int $perPage
* @param string $pageName
* @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
*/
public function paginateAll($perPage = 15, $pageName = 'page', $page = null);
public function getCount();
}