| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function display($multiple = false) |
||
| 10 | { |
||
| 11 | return Admin::component('admin::components.grid-inline-upload', [ |
||
| 12 | 'key' => $this->getKey(), |
||
| 13 | 'name' => $this->column->getName(), |
||
| 14 | 'value' => $this->getValue(), |
||
| 15 | 'target' => "inline-upload-{$this->getKey()}", |
||
| 16 | 'resource' => $this->getResource(), |
||
| 17 | 'multiple' => $multiple, |
||
| 18 | ]); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |