Skip to content

Commit 839f4cd

Browse files
committed
Merge branch '4.x' of github.com:BinarCode/laravel-restify into 4.x
2 parents fe5081a + dc995bb commit 839f4cd

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@ You can install the package via composer:
1818
composer require binaryk/laravel-restify
1919
```
2020

21-
## Key havings
22-
23-
- "CRUD" over resources with 0 (zero) extra custom code
24-
- Passport checker (`php artisan restify:check-passport`)
25-
- Auth module with [Laravel Sanctum](https://laravel.com/docs/7.x/sanctum#introduction) (register, verify, login, reset + forgot password)
26-
- Beautiful response maker
27-
- Powerful and configurable searching/filtering over entities
28-
- API friendly Exception Handler
29-
3021
## Quick start
3122

3223
Setup package:

src/helpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function field(...$args)
1313
function data($data)
1414
{
1515
return response()->json([
16-
'data' => $data
16+
'data' => $data,
1717
]);
1818
}
1919
}

0 commit comments

Comments
 (0)