PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
platform
/
core
/
table
/
resources
/
views
<div class="table-wrapper"> @if ($table->isHasFilter()) <div class="table-configuration-wrap" @if (request()->has('filter_table_id')) style="display: block;" @endif> <span class="configuration-close-btn btn-show-table-options"><i class="fa fa-times"></i></span> {!! $table->renderFilter() !!} </div> @endif <div class="portlet light bordered portlet-no-padding"> <div class="portlet-title"> <div class="caption"> <div class="wrapper-action"> @if ($actions) <div class="btn-group"> <a class="btn btn-secondary dropdown-toggle" href="#" data-toggle="dropdown">{{ trans('core/table::table.bulk_actions') }} </a> <ul class="dropdown-menu"> @foreach ($actions as $action) <li> {!! $action !!} </li> @endforeach </ul> </div> @endif @if ($table->isHasFilter()) <button class="btn btn-primary btn-show-table-options">{{ trans('core/table::table.filters') }}</button> @endif </div> </div> </div> <div class="portlet-body"> <div class="table-responsive @if ($actions) table-has-actions @endif @if ($table->isHasFilter()) table-has-filter @endif"> @section('main-table') {!! $dataTable->table(compact('id', 'class'), false) !!} @show </div> </div> </div> </div> @include('core/table::modal') @push('footer') {!! $dataTable->scripts() !!} @endpush
[-] table.blade.php
[edit]
[+]
..
[-] base-table.blade.php
[edit]
[-] simple-table.blade.php
[edit]
[-] filter.blade.php
[edit]
[-] modal.blade.php
[edit]
[+]
partials
[-] table-info.blade.php
[edit]
[-] bulk-changes.blade.php
[edit]