1 | <?php |
||
7 | abstract class TemplatableField extends Field |
||
8 | { |
||
9 | /** @var string */ |
||
10 | protected $templateKey; |
||
11 | |||
12 | /** @var \Illuminate\Contracts\Translation\Translator */ |
||
13 | protected $translator; |
||
14 | |||
15 | 6 | public function __construct($value, $model, string $templateKey = '') |
|
22 | |||
23 | 6 | protected function parseValue($value): string |
|
37 | |||
38 | 6 | protected function getTemplatePath(string $templateKey): string |
|
44 | |||
45 | 3 | protected function getNestingLevel(): string |
|
49 | } |
||
50 |