From e498e1d5e439dfd957fe97c4fad664a382c10d29 Mon Sep 17 00:00:00 2001 From: Arjon Jason Castro Date: Sat, 9 Mar 2019 16:51:31 +0800 Subject: [PATCH] Add ddO in readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 074df91..e62546f 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,19 @@ $response ->assertJson(...); ``` +### ddO + +Similar to `$response->dd()` but it dump the original content instead. + +```php +$response = $this->post(...); + +$response + ->ddO() // prints the original content of the response. + ->assertOk() + ->assertJson(...); +``` + # Query Builder Macros