PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Options
/
Plugins
<?php namespace Yajra\DataTables\Html\Options\Plugins; use Yajra\DataTables\Html\SearchPane; use Illuminate\Contracts\Support\Arrayable; /** * DataTables - Search panes plugin option builder. * * @see https://datatables.net/extensions/searchpanes * @see https://datatables.net/reference/option/searchPanes */ trait SearchPanes { /** * Set searchPane option value. * * @param bool|array $value * @return $this * @see https://datatables.net/reference/option/searchPanes */ public function searchPanes($value = true) { if (is_callable($value)) { $value = app()->call($value); } if ($value instanceof Arrayable) { $value = $value->toArray(); } if (is_bool($value)) { $value = SearchPane::make()->show($value)->toArray(); } $this->attributes['searchPanes'] = $value; return $this; } }
[-] FixedColumns.php
[edit]
[-] FixedHeader.php
[edit]
[-] KeyTable.php
[edit]
[+]
..
[-] Responsive.php
[edit]
[-] ColReorder.php
[edit]
[-] Buttons.php
[edit]
[-] Select.php
[edit]
[-] RowReorder.php
[edit]
[-] AutoFill.php
[edit]
[-] RowGroup.php
[edit]
[-] Scroller.php
[edit]
[-] SearchPanes.php
[edit]