Skip to content

Commit 14a749f

Browse files
committed
Change col-xl to col-lg in tfoot paginator and buttons containers
1 parent 4975f74 commit 14a749f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This package is to displaying the model data in a Grid table.
2626

2727
Run the composer command:
2828

29-
`composer require itstructure/laravel-grid-view "~1.0.12"`
29+
`composer require itstructure/laravel-grid-view "~1.1.0"`
3030

3131
### If you are testing this package from a local server directory
3232

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
### CHANGE LOG:
22

3+
**1.1.0 February 04, 2024**
4+
- Change from `col-xl-...` to `col-lg-...` in `tfoot` paginator and buttons containers.
5+
36
**1.0.12 January 03, 2024**
47
- Bug fix for showing pagination page totals.
58

resources/views/grid.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@
9898
<td colspan="{{ count($columnObjects) + 1 }}">
9999
<div class="mx-1">
100100
<div class="row">
101-
<div class="col-12 col-xl-8 text-center text-xl-left">
101+
<div class="col-12 col-lg-8 text-center text-lg-left">
102102
{{ $paginator->render('grid_view::pagination') }}
103103
</div>
104-
<div class="col-12 col-xl-4 text-center text-xl-right">
104+
<div class="col-12 col-lg-4 text-center text-lg-right">
105105
@if ($useFilters)
106106
<button id="grid_view_search_button" type="button" class="btn btn-primary">{{ $searchButtonLabel }}</button>
107107
<button id="grid_view_reset_button" type="button" class="btn btn-warning">{{ $resetButtonLabel }}</button>

0 commit comments

Comments
 (0)