blob: 7c7569124405ae8c2bfd5c0fa3ce8b1658ce97b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Admin\Sprunje;
use Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Sprinkle\Core\Facades\Debug;
use UserFrosting\Sprinkle\Core\Sprunje\Sprunje;
/**
* GroupSprunje
*
* Implements Sprunje for the groups API.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class GroupSprunje extends Sprunje
{
protected $name = 'groups';
protected $sortable = [
'name',
'description'
];
protected $filterable = [
'name',
'description'
];
/**
* {@inheritDoc}
*/
protected function baseQuery()
{
return $this->classMapper->createInstance('group')->newQuery();
}
}
|