Results 32 comments of Bao Pham

| Type | Details | |---------------|--| | Response Time | 47h53m43.313432835s | | Latest Activity | [Issue](https://github.com/baopham/laravel-dynamodb/issues/133) @ 2018-03-02T07:38:19Z|

No, this is there for me to ensure $cast is supported. It isn't with the aim to cater for that issue scenario. The user mentioned $cast and it made me...

Haha thanks for that. I had concern about letting it roam free without proper testing. I just need to double check if there are any formats that would not work,...

Sorry, could you give more clarification on your use case? What was the setup (Laravel and DynamoDB)? What is the expectation of using this library? What do you want to...

This library doesn't work with Laravel auth out of the box. Usually when you want "users", you would want "roles" too and that involves setting up relationship like many-to-many and...

@gregmsanderson love the detailed analysis! looks like the decision logic could be tweaked a bit. This would require a bit of digging in the docs again to make sure we...

Yep, this is easy to do. If anyone is interested, feel free to make a PR. I won't work on this until next weekend.

Hahah, I love this! Maybe we can have something like: ``` DynamoDb::transaction(function () { // do stuff }); ```

I do want to get this feature in. Let's see if I can find sometime during the holiday to work on this.

This is not official, but this is what I have in mind: ``` DynamoDb::transaction('write', function (DynamoDbTransaction $t) { $query = $t->beginTransactItem(); $query->table('test') ->key(['id' => 'foo1']) // the optional condition expression...