Skip to content

Commit 4a98990

Browse files
committed
fix another typo
1 parent 2e9a664 commit 4a98990

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fields.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ It may happen that the attribute does not exists on the model that matches with
5656

5757
```php
5858
use Cone\Root\Fields\Text;
59-
use Illuminate\Databsase\Eloquent\Model;
59+
use Illuminate\Database\Eloquent\Model;
6060
use Illuminate\Http\Request;
6161

6262
Text::make('Title')
@@ -73,7 +73,7 @@ You may define custom value formatters for the field values. In that case you ca
7373

7474
```php
7575
use Cone\Root\Fields\Number;
76-
use Illuminate\Databsase\Eloquent\Model;
76+
use Illuminate\Database\Eloquent\Model;
7777
use Illuminate\Http\Request;
7878
use Illuminate\Support\Number;
7979

@@ -92,7 +92,7 @@ namespace App\Root\Fields;
9292

9393
use Cone\Root\Fields\Field;
9494
use Illuminate\Http\Request;
95-
use Illuminate\Databsase\Eloquent\Model;
95+
use Illuminate\Database\Eloquent\Model;
9696

9797
class CustomField extends Field
9898
{

0 commit comments

Comments
 (0)