Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Apr 3, 2024
1 parent 741f19a commit 2e9a664
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
4 changes: 2 additions & 2 deletions fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 2e9a664

Please sign in to comment.