You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,11 +33,11 @@ For the purposes of the documentation, lets use the example of a Survey building
33
33
34
34
### Adding custom fields
35
35
36
-
To add basic custom field support, simply add the `HasCusomFields` trait at the top of your model:
36
+
To add basic custom field support, simply add the `HasCustomFields` trait at the top of your model:
37
37
38
38
```php
39
39
use Illuminate\Database\Eloquent\Model;
40
-
use Givebutter\LaravelCustomFields\Traits\HasCusomFields;
40
+
use Givebutter\LaravelCustomFields\Traits\HasCustomFields;
41
41
42
42
class Survey extends Model
43
43
{
@@ -49,11 +49,11 @@ class Survey extends Model
49
49
50
50
### Adding custom field responses
51
51
52
-
Next, we add support to store custom field responses. We'll simply pull in the `HasCusomFieldResponses` trait at the top of our `SurveyResponse` model.
52
+
Next, we add support to store custom field responses. We'll simply pull in the `HasCustomFieldResponses` trait at the top of our `SurveyResponse` model.
53
53
54
54
```php
55
55
use Illuminate\Database\Eloquent\Model;
56
-
use Givebutter\LaravelCustomFields\Traits\HasCusomFieldResponses;
56
+
use Givebutter\LaravelCustomFields\Traits\HasCustomFieldResponses;
0 commit comments