File tree Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ This package is to displaying the model data in a Grid table.
14
14
![ Grid view appearance] ( https://github.com/itstructure/laravel-grid-view/blob/master/laravel_grid_view_appearance_en.png )
15
15
16
16
## Requirements
17
- - laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+
17
+ - laravel 5.5+ | 6+ | 7+ | 8+ | 9+ | 10+ | 11+
18
18
- Bootstrap 4 for styling
19
19
- JQuery
20
20
- php >= 7.1
21
21
- composer
22
22
23
23
## Installation
24
24
25
- ### General from remote packagist repository
25
+ ### General from remote repository
26
26
27
27
Run the composer command:
28
28
29
- ` composer require itstructure/laravel-grid-view "~1.1.0 " `
29
+ ` composer require itstructure/laravel-grid-view "~1.1.1 " `
30
30
31
31
### If you are testing this package from a local server directory
32
32
@@ -52,14 +52,6 @@ Then run command:
52
52
53
53
` composer require itstructure/laravel-grid-view:dev-master --prefer-source `
54
54
55
- ### Registration
56
-
57
- Register service provider in ** config/app.php**
58
-
59
- ``` php
60
- Itstructure\GridView\GridViewServiceProvider::class,
61
- ```
62
-
63
55
### Publish files (Not necessary)
64
56
65
57
- To publish views run command:
Original file line number Diff line number Diff line change 1
1
### CHANGE LOG:
2
2
3
+ ** 1.1.1 March 20, 2024:**
4
+ - Add support for Laravel 11
5
+
3
6
** 1.1.0 February 04, 2024**
4
7
- Change from ` col-xl-... ` to ` col-lg-... ` in ` tfoot ` paginator and buttons containers.
5
8
Original file line number Diff line number Diff line change 14
14
],
15
15
"require" : {
16
16
"php" : " >=7.1.0" ,
17
- "laravel/framework" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0"
17
+ "laravel/framework" : " ~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0 "
18
18
},
19
19
"autoload" : {
20
20
"psr-4" : {
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public function boot()
48
48
*/
49
49
private function registerCommands (): void
50
50
{
51
- $ this ->commands (Commands \ PublishCommand::class);
51
+ $ this ->commands (PublishCommand::class);
52
52
}
53
53
54
54
You can’t perform that action at this time.
0 commit comments