We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da262b commit d4b254bCopy full SHA for d4b254b
src/eloquent-filter/Console/stubs/filters.stub
@@ -2,21 +2,20 @@
2
3
namespace DummyNamespace;
4
5
-use LaravelLegends\EloquentFilter\ModelFilter;
+use LaravelLegends\EloquentFilter\Filters\ModelFilter;
6
7
class DummyClass extends ModelFilter
8
{
9
/**
10
- * The rules of the your filter
11
- *
+ * The rules of filter
+ *
12
+ * @see https://github.com/LaravelLegends/eloquent-filter#what-does-it-do
13
* @return array
- * @see https://github.com/LaravelLegends/eloquent-filter#max
14
*/
15
public function getFilterables(): array
16
17
return [
18
- // 'id' => 'exact',
19
- // 'name' => ['contains', 'ends_with']
+ 'id' => ['exact', 'not_exact'],
20
];
21
}
22
0 commit comments