File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file. This project adheres to
4
4
[ Semantic Versioning] ( http://semver.org/ ) and [ this changelog format] ( http://keepachangelog.com/ ) .
5
5
6
+ ## Unreleased
7
+
8
+ ### Added
9
+
10
+ - [ #181 ] ( https://github.com/laravel-json-api/laravel/issues/181 ) The ` JsonApiController ` now extends the base Laravel
11
+ controller.
12
+
6
13
## [ 2.1.2] - 2022-04-04
7
14
8
15
### Fixed
Original file line number Diff line number Diff line change 22
22
use Illuminate \Foundation \Auth \Access \AuthorizesRequests ;
23
23
use Illuminate \Foundation \Bus \DispatchesJobs ;
24
24
use Illuminate \Foundation \Validation \ValidatesRequests ;
25
+ use Illuminate \Routing \Controller ;
25
26
26
- class JsonApiController
27
+ class JsonApiController extends Controller
27
28
{
28
-
29
29
/**
30
30
* JSON:API Actions
31
31
*/
@@ -46,5 +46,4 @@ class JsonApiController
46
46
use AuthorizesRequests;
47
47
use DispatchesJobs;
48
48
use ValidatesRequests;
49
-
50
49
}
You can’t perform that action at this time.
0 commit comments