60 lines
1.7 KiB
PHP
60 lines
1.7 KiB
PHP
<div class="box">
|
|
@if(isset($title))
|
|
<div class="box-header with-border">
|
|
<h3 class="box-title"> {{ $title }}</h3>
|
|
</div>
|
|
@endif
|
|
|
|
@if ( $grid->showTools() || $grid->showExportBtn() || $grid->showCreateBtn() )
|
|
<div class="box-header with-border">
|
|
<div class="pull-right">
|
|
{{-- {!! $grid->renderColumnSelector() !!}--}}
|
|
{!! $grid->renderExportButton() !!}
|
|
{!! $grid->renderCreateButton() !!}
|
|
</div>
|
|
@if ( $grid->showTools() )
|
|
<span>
|
|
{!! $grid->renderHeaderTools() !!}
|
|
</span>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
|
|
{!! $grid->renderFilter() !!}
|
|
|
|
{!! $grid->renderHeader() !!}
|
|
|
|
<!-- /.box-header -->
|
|
<div class="box-body table-responsive no-padding">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
@foreach($grid->visibleColumns() as $column)
|
|
<th>{{$column->getLabel()}}{!! $column->sorter() !!}</th>
|
|
@endforeach
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
@foreach($grid->rows() as $row)
|
|
<tr {!! $row->getRowAttributes() !!}>
|
|
@foreach($grid->visibleColumnNames() as $name)
|
|
<td {!! $row->getColumnAttributes($name) !!}>
|
|
{!! $row->column($name) !!}
|
|
</td>
|
|
@endforeach
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{!! $grid->renderFooter() !!}
|
|
|
|
<div class="box-footer clearfix">
|
|
{!! $grid->paginator() !!}
|
|
</div>
|
|
<!-- /.box-body -->
|
|
</div>
|