You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+46-2
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,16 @@ Supports all key types - primary hash key and composite keys.
13
13
14
14
*[Install](#install)
15
15
*[Usage](#usage)
16
+
*[find() and delete()](#find-and-delete)
17
+
*[Conditions](#conditions)
18
+
*[all() and first()](#all-and-first)
19
+
*[Update](#update)
20
+
*[Save](#save)
21
+
*[Chunk](#chunk)
22
+
*[limit() and take()](#limit-and-take)
23
+
*[firstOrFail()](#firstorfail)
24
+
*[findOrFail()](#findorfail)
25
+
*[Query scope](#query-scope)
16
26
*[Indexes](#indexes)
17
27
*[Composite Keys](#composite-keys)
18
28
*[Requirements](#requirements)
@@ -32,7 +42,7 @@ Install
32
42
33
43
```php
34
44
// config/app.php
35
-
45
+
36
46
'providers' => [
37
47
...
38
48
BaoPham\DynamoDb\DynamoDbServiceProvider::class,
@@ -73,7 +83,7 @@ Usage
73
83
* Extends your model with `BaoPham\DynamoDb\DynamoDbModel`, then you can use Eloquent methods that are supported. The idea here is that you can switch back to Eloquent without changing your queries.
74
84
* Or if you want to sync your DB table with a DynamoDb table, use trait `BaoPham\DynamoDb\ModelTrait`, it will call a `PutItem` after the model is saved.
0 commit comments