-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change namespace
App\Http\Livewire
to App\Livewire
- Loading branch information
1 parent
1d9a5a3
commit bfe65ee
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
app/Http/Livewire/CreateNewCommentForm.php → app/Livewire/CreateNewCommentForm.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace App\Http\Livewire; | ||
namespace App\Livewire; | ||
|
||
use App\Models\Post; | ||
use App\Models\Comment; | ||
|
2 changes: 1 addition & 1 deletion
2
app/Http/Livewire/EditCommentForm.php → app/Livewire/EditCommentForm.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace App\Http\Livewire; | ||
namespace App\Livewire; | ||
|
||
use App\Models\Comment; | ||
use Livewire\Component; | ||
|
2 changes: 1 addition & 1 deletion
2
app/Http/Livewire/EditUserFormModal.php → app/Livewire/EditUserFormModal.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace App\Http\Livewire; | ||
namespace App\Livewire; | ||
|
||
use App\Models\User; | ||
use Livewire\Component; | ||
|
2 changes: 1 addition & 1 deletion
2
app/Http/Livewire/LatestBlogPosts.php → app/Livewire/LatestBlogPosts.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace App\Http\Livewire; | ||
namespace App\Livewire; | ||
|
||
use Livewire\WithPagination; | ||
use Livewire\Component; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
|
||
namespace App\Http\Livewire; | ||
namespace App\Livewire; | ||
|
||
use App\Models\Tag; | ||
use Livewire\Component; | ||
|