We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0683c commit 2eb267eCopy full SHA for 2eb267e
README.md
@@ -90,7 +90,7 @@ php artisan make:repository UserRepository --model=User
90
Update `UserRepository` logic:
91
92
```php
93
-namespace App\Repositories;
+namespace App\Http\Repositories;
94
95
use App\User;
96
use PPSpaces\Repositories\Model as Repository;
@@ -116,7 +116,7 @@ class UserRepository extends Repository {
116
Within your `UserController` assume you have a resource controller created. Inject the `UserRepository` to the contoller.
117
118
119
-use App\Repositories\UserRepository;
+use App\Http\Repositories\UserRepository;
120
121
class UserController extends Controller
122
{
0 commit comments