src/Contracts/Resource/Readable.php
<?php
/*
* This file is part of the Allay package.
*
* (c) Cedric van Putten <me@bycedric.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ByCedric\Allay\Contracts\Resource;
interface Readable
{
/**
* Apply the correct rules to the query builder, to scope on all readable resources.
*
* @param \Illuminate\Database\Query\Builder $query
* @return \Illuminate\Database\Query\Builder
*/
public function getReadableQuery($query);
}