| 1 | <?php |
||
| 8 | abstract class BladeElement extends Element |
||
| 9 | { |
||
| 10 | public function render(): string |
||
| 11 | { |
||
| 12 | return $this->getEngine()->make(implode('.', array_filter([ |
||
| 13 | $this->getPath(), |
||
| 14 | $this->name, |
||
| 15 | ])), $this->getOptions())->render(); |
||
| 16 | } |
||
| 17 | |||
| 18 | abstract protected function getPath(): string; |
||
| 19 | |||
| 20 | protected function getEngine(): Factory |
||
| 24 | } |
||
| 25 |