Skip to content
This repository has been archived by the owner on Apr 20, 2022. It is now read-only.

Commit

Permalink
fix typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cklmercer committed Jul 18, 2016
1 parent 2bdad68 commit 7e0224d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Schema::create('users', function (Blueprint $table) {
##### 3.) Use the "HasSettings.php" trait within your model.
_User.php_
```
use Cklmercer/ModelSettings/HasSettings;
use Cklmercer\ModelSettings\HasSettings;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
Expand Down Expand Up @@ -79,7 +79,7 @@ $user->settings()->forget('some.setting');
##### 6.) Set the default settings for a new model.
_User.php_
```
use Cklmercer/ModelSettings/HasSettings;
use Cklmercer\ModelSettings\HasSettings;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
Expand Down

0 comments on commit 7e0224d

Please sign in to comment.