|
2 | 2 |
|
3 | 3 | namespaceYajra\DataTables\Html; |
4 | 4 |
|
5 | | -useCollective\Html\HtmlBuilder; |
6 | | -useIlluminate\Contracts\Config\Repository; |
7 | | -useIlluminate\Contracts\View\Factory; |
8 | 5 | useIlluminate\Support\Arr; |
| 6 | +useIlluminate\Support\Str; |
| 7 | +useCollective\Html\HtmlBuilder; |
9 | 8 | useIlluminate\Support\Collection; |
10 | 9 | useIlluminate\Support\HtmlString; |
11 | | -useIlluminate\Support\Str; |
| 10 | +useIlluminate\Contracts\View\Factory; |
12 | 11 | useIlluminate\Support\Traits\Macroable; |
| 12 | +useIlluminate\Contracts\Config\Repository; |
13 | 13 |
|
14 | 14 | class Builder |
15 | 15 | { |
@@ -532,7 +532,7 @@ public function table(array $attributes = [], $drawFooter = false, $drawSearch = |
532 | 532 | $tableHtml ='<table' .$htmlAttr .'>'; |
533 | 533 | $searchHtml =$drawSearch ?'<tr class="search-filter">' .implode('', |
534 | 534 | $this->compileTableSearchHeaders()) .'</tr>' :''; |
535 | | -$tableHtml.='<thead><tr>' .implode('',$th) .'</tr>' .$searchHtml .'</thead>'; |
| 535 | +$tableHtml .='<thead><tr>' .implode('',$th) .'</tr>' .$searchHtml .'</thead>'; |
536 | 536 | if ($drawFooter) { |
537 | 537 | $tf =$this->compileTableFooter(); |
538 | 538 | $tableHtml .='<tfoot><tr>' .implode('',$tf) .'</tr></tfoot>'; |
|