| 1 | <?php |
||
| 8 | class QuickSearch extends AbstractTool |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $view = 'admin::grid.quick-search'; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $placeholder; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set placeholder. |
||
| 22 | * |
||
| 23 | * @param string $text |
||
| 24 | * |
||
| 25 | * @return $this |
||
| 26 | */ |
||
| 27 | public function placeholder($text = '') |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View |
||
| 36 | */ |
||
| 37 | public function render() |
||
| 52 | } |
||
| 53 |