Skip to content

Commit

Permalink
Added HasControllerHooks to base controller; Bump Concord to v1.15+
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Mar 15, 2024
1 parent 1ce2c35 commit 620be34
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Added the `hideIf` directive to table columns (widget)
- Added the `rowAttributes` option to the table widget
- Added the `searchable()` method to the `Filter` interface
- Added the `HasControllerHooks` trait to the base controller class
- Added the Trident Theme - it has been written from scratch with new visual style
- Added the following blade components:
- Alert
Expand Down Expand Up @@ -44,6 +45,7 @@
- Enum v4.1
- Address v3.0
- Gears v1.12
- Concord v1.15
- Changed Breadcrumbs dependency from v7 to v8
- Changed `bcrypt()` to `Hash::make()` in the make:superuser command
- Changed the filename of `resources/database/currencies.json` (removed the leading space from the filename)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require": {
"php": "^8.2",
"ext-json": "*",
"konekt/concord": "^1.13",
"konekt/concord": "^1.15",
"konekt/customer": "^3.0",
"konekt/address": "^3.0",
"konekt/user": "^3.0",
Expand Down
2 changes: 2 additions & 0 deletions src/Http/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller;
use Konekt\Concord\Hooks\HasControllerHooks;

/**
* Common base controller class for all AppShell controllers
Expand All @@ -29,4 +30,5 @@ abstract class BaseController extends Controller
use AuthorizesRequests;
use DispatchesJobs;
use ValidatesRequests;
use HasControllerHooks;
}

0 comments on commit 620be34

Please sign in to comment.