1 | <?php |
||
5 | class CrudAbstract implements CrudInterface |
||
6 | { |
||
7 | protected $options = []; |
||
8 | |||
9 | protected $type = 'text'; |
||
10 | |||
11 | public function __construct(string $name) |
||
16 | |||
17 | public function make(): array |
||
21 | |||
22 | /* |
||
23 | |-------------------------------------------------------------------------- |
||
24 | | Methods available for all Field and Column Types |
||
25 | |-------------------------------------------------------------------------- |
||
26 | */ |
||
27 | |||
28 | public function label(string $label) |
||
34 | |||
35 | public function prefix(string $prefix) |
||
41 | |||
42 | public function suffix(string $suffix) |
||
48 | } |
||
49 |