diff --git a/README.md b/README.md index 0a738a0..7a6890f 100644 --- a/README.md +++ b/README.md @@ -39,12 +39,24 @@ And in our model: ```php protected $casts = [ - 'location' => 'array' + 'address' => 'array' ] ``` - +The resulting data will have this format: +``` +{ + street_name: '', + street_number: '', + postal_code: '', + city: '', + country: '', + formatted_address: '', + latitude: '', + longitude: '' +} +```