Skip to content

Commit

Permalink
Try to update to 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyslik committed Feb 26, 2019
1 parent db597b8 commit 8baee2b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
19 changes: 3 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->


- [Column sorting for Laravel 5.5-7](#column-sorting-for-laravel-55-7)
- [Column sorting for Laravel 5.5-8](#column-sorting-for-laravel-55-8)
- [Setup](#setup)
- [Composer](#composer)
- [Laravel's >=5.5 auto discovery](#laravels-55-auto-discovery)
Expand All @@ -13,23 +13,10 @@
- [Configuration in few words](#configuration-in-few-words)
- [Font Awesome (default font classes)](#font-awesome-default-font-classes)
- [Font Awesome 5](#font-awesome-5)
- [Full Example](#full-example)
- [Routes](#routes)
- [Controller's `index()` method](#controllers-index-method)
- [View (_pagination included_)](#view-_pagination-included_)
- [HasOne / BelongsTo Relation sorting](#hasone--belongsto-relation-sorting)
- [Define hasOne relation](#define-hasone-relation)
- [Define belongsTo relation](#define-belongsto-relation)
- [Define `$sortable` arrays](#define-sortable-arrays)
- [Blade and relation sorting](#blade-and-relation-sorting)
- [ColumnSortable overriding (advanced)](#columnsortable-overriding-advanced)
- [Aliasing](#aliasing)
- [Using `withCount()`](#using-withcount)
- [Exception to catch](#exception-to-catch)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

# Column sorting for Laravel 5.5-7
# Column sorting for Laravel 5.5-8
[![Latest Version](https://img.shields.io/github/release/Kyslik/column-sortable.svg?style=flat-square)](https://github.com/Kyslik/column-sortable/releases)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Total Downloads](https://img.shields.io/packagist/dt/Kyslik/column-sortable.svg?style=flat-square)](https://packagist.org/packages/Kyslik/column-sortable)
Expand All @@ -46,7 +33,7 @@ Pull this package in through Composer (development/latest version `dev-master`)
```json
{
"require": {
"kyslik/column-sortable": "5.7.*"
"kyslik/column-sortable": "5.8.*"
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
],
"require": {
"php": ">=7.0",
"Illuminate/Support": "5.5.*|5.6.*|5.7.*",
"Illuminate/Database": "5.5.*|5.6.*|5.7.*"
"illuminate/support": "5.5.*|5.6.*|5.7.*|5.8.*",
"illuminate/database": "5.5.*|5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"phpunit/phpunit": "^6.0|^7.0",
Expand Down

0 comments on commit 8baee2b

Please sign in to comment.