1 | <?php |
||
15 | class Label extends TranslatableResource |
||
16 | { |
||
17 | /** |
||
18 | * The model the resource corresponds to. |
||
19 | * |
||
20 | * @var string |
||
21 | */ |
||
22 | public static $model = 'BBSLab\\NovaTranslation\\Models\\Label'; |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public static $title = 'key'; |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public static $search = [ |
||
33 | 'key', |
||
34 | 'value', |
||
35 | ]; |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public static $group = null; |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public static function label() |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | public static function singularLabel() |
||
57 | |||
58 | /** |
||
59 | * {@inheritdoc} |
||
60 | */ |
||
61 | public function fields(Request $request) |
||
84 | |||
85 | /** |
||
86 | * {@inheritdoc} |
||
87 | */ |
||
88 | public function cards(Request $request) |
||
92 | |||
93 | /** |
||
94 | * {@inheritdoc} |
||
95 | */ |
||
96 | public function filters(Request $request) |
||
100 | |||
101 | /** |
||
102 | * {@inheritdoc} |
||
103 | */ |
||
104 | public function lenses(Request $request) |
||
108 | |||
109 | /** |
||
110 | * {@inheritdoc} |
||
111 | */ |
||
112 | public function actions(Request $request) |
||
116 | } |
||
117 |