{{-- Grid Wrapper includes all the buttons on the top of the grid, the grey background, the grid and grids/labels inside grids. It's primarily used for queries that don't have column sets and that don't use searching --}} @if (isset($grid_header_button))
@if (isset($grid_header_button_action)) {{ Form::button_link($grid_header_button, $grid_header_button_action, 'grid_header_btn' )}} @elseif (isset($grid_header_button_ex_action)) {{ Form::button_ex($grid_header_button,$grid_header_button_ex_action,snake_case($grid_header_button)) }} @else {{ Form::button_save($grid_header_button) }} @endif @if(isset($additional_grid_header_button)) @if (isset($additional_grid_header_button_action)) {{ Form::button_link($additional_grid_header_button, $additional_grid_header_button_action, 'grid_header_btn' )}} @elseif (isset($additional_grid_header_button_ex_action)) {{ Form::button_ex($additional_grid_header_button,$additional_grid_header_button_ex_action,snake_case($additional_grid_header_button)) }} @else {{ Form::button_save($additional_grid_header_button) }} @endif @endif
@endif
@if (isset($pinned_grid)) {{ Form::label_title('Pinned Tickets', null, null, null, null, 'pinned-label') }} @endif @include('shared.grids._grid_label_button') @include('shared.grids._grid_table')