Skip to content

Commit 2964129

Browse files
fix: namespace issues (#16)
1 parent e5ee29a commit 2964129

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ This will publish following config file
7575
//config/comments-admin-panel.php
7676
<?php
7777

78-
use LakM\Comments\AdminPanel\Middleware\AdminPanelAccessMiddleware;
78+
use LakM\CommentsAdminPanel\Middleware\AdminPanelAccessMiddleware;
7979

8080
return [
8181
'enabled' => true,

src/Livewire/Admin/CommentForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use Illuminate\Contracts\Foundation\Application;
1414
use Illuminate\Contracts\View\Factory;
1515
use Illuminate\Contracts\View\View;
16-
use LakM\Comments\Models\Comment;
16+
use LakM\Commenter\Models\Comment;
1717
use Livewire\Attributes\Layout;
1818
use Livewire\Component;
1919

src/Livewire/Admin/ReplyForm.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
use Illuminate\Contracts\Foundation\Application;
1313
use Illuminate\Contracts\View\Factory;
1414
use Illuminate\Contracts\View\View;
15-
use LakM\Comments\Models\Comment;
16-
use LakM\Comments\Models\Reply;
15+
use LakM\Commenter\Models\Comment;
16+
use LakM\Commenter\Models\Reply;
1717
use Livewire\Attributes\Layout;
1818
use Livewire\Component;
1919

src/Livewire/Admin/ReplyList.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
use Illuminate\Database\Eloquent\Relations\HasMany;
2020
use Illuminate\Support\Facades\DB;
2121
use Illuminate\Support\Str;
22-
use LakM\Comments\Models\Comment;
23-
use LakM\Comments\Models\Reply;
22+
use LakM\Commenter\Models\Comment;
23+
use LakM\Commenter\Models\Reply;
2424
use LakM\CommentsAdminPanel\Repository;
2525
use Livewire\Attributes\Layout;
2626
use Livewire\Component;

0 commit comments

Comments
 (0)