From 6a2810df35ffad450eecc835919f0842c1ef198d Mon Sep 17 00:00:00 2001 From: Quentin Gabriele Date: Mon, 21 Oct 2024 16:29:57 +0200 Subject: [PATCH] fix doc --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 75e3469..ca2c52d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Easily use Brick/Money in your Laravel app. ### Breaking cahnge The namespace has been updated: from `Finller\Money` to `Elegantly\Money`. -You can simple do a search+replace. +You can simply do a search+replace. ## Installation @@ -49,7 +49,7 @@ return [ If you store the currency in a table column alongside the amount value, you can specify the column name like this: ```php -use Elegantly\MoneyCast; +use Elegantly\Money\MoneyCast; /** * @property ?Money $price @@ -69,7 +69,7 @@ class Invoice extends Model { You can cast your money to a specific currency using the currency code instead of the column name. ```php -use Elegantly\MoneyCast; +use Elegantly\Money\MoneyCast; /** * @property ?Money $price