diff --git a/core-concepts.md b/core-concepts.md index 8f57b30..460e317 100644 --- a/core-concepts.md +++ b/core-concepts.md @@ -77,7 +77,7 @@ namespace App\Models; use App\Contracts\Models\Addon as Contract; use Cone\Bazar\Concerns\InteractsWithProxy; -use Illuminate\Databse\Eloquent\Model; +use Illuminate\Database\Eloquent\Model; class Addon extends Model implements Contract { diff --git a/fields.md b/fields.md index f5db49f..4375b42 100644 --- a/fields.md +++ b/fields.md @@ -85,7 +85,7 @@ Number::make('Price') ### Value Hydration -You may define custom value hydration logic on your field clasas. To do so, you can easily override the default `hydrate` method: +You may define custom value hydration logic on your field class. To do so, you can easily override the default `hydrate` method: ```php namespace App\Root\Fields; @@ -256,7 +256,7 @@ $field->cols(100); ### Relation Fields -Relation fields are represanting Eloquent relation definitions on the resource models. Relation fields are highly customizable and provide a nice and detailed API. +Relation fields are representing Eloquent relation definitions on the resource models. Relation fields are highly customizable and provide a nice and detailed API. #### BelongsTo