diff --git a/resources/views/admin/layout.blade.php b/resources/views/admin/layout.blade.php index 4f827f6..d0dc3fd 100644 --- a/resources/views/admin/layout.blade.php +++ b/resources/views/admin/layout.blade.php @@ -4,7 +4,7 @@
@include('layouts.navigation') - @include('user.partials.background') + @include('partials.background')
@include('admin.partials.sidenav')
diff --git a/resources/views/user/partials/background.blade.php b/resources/views/partials/background.blade.php similarity index 98% rename from resources/views/user/partials/background.blade.php rename to resources/views/partials/background.blade.php index e7a9c93..32ff3c1 100644 --- a/resources/views/user/partials/background.blade.php +++ b/resources/views/partials/background.blade.php @@ -1,4 +1,3 @@ - @php $array = \cache()->remember('background', 300, function () { $bg = new \App\Models\SiteBackground(); diff --git a/resources/views/playlist/index.blade.php b/resources/views/playlist/index.blade.php index 1f23f99..a717882 100644 --- a/resources/views/playlist/index.blade.php +++ b/resources/views/playlist/index.blade.php @@ -6,7 +6,7 @@
- @include('user.partials.background') + @include('partials.background') @livewire('playlists')
diff --git a/resources/views/playlist/list.blade.php b/resources/views/playlist/list.blade.php index fce9784..a0bb891 100644 --- a/resources/views/playlist/list.blade.php +++ b/resources/views/playlist/list.blade.php @@ -1,6 +1,6 @@
- @include('user.partials.background') + @include('partials.background') @livewire('playlist-overview', ['playlist_id' => $playlist->id])
diff --git a/resources/views/profile/comments.blade.php b/resources/views/profile/comments.blade.php index 596bccf..242d46d 100644 --- a/resources/views/profile/comments.blade.php +++ b/resources/views/profile/comments.blade.php @@ -6,7 +6,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
diff --git a/resources/views/profile/index.blade.php b/resources/views/profile/index.blade.php index 42290ad..1326fb6 100644 --- a/resources/views/profile/index.blade.php +++ b/resources/views/profile/index.blade.php @@ -7,11 +7,11 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
@include('profile.partials.sidebar') - @include('user.partials.info') + @include('profile.partials.info')
diff --git a/resources/views/profile/likes.blade.php b/resources/views/profile/likes.blade.php index 4dde4f0..ace0657 100644 --- a/resources/views/profile/likes.blade.php +++ b/resources/views/profile/likes.blade.php @@ -6,7 +6,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
@include('profile.partials.sidebar') diff --git a/resources/views/profile/notifications.blade.php b/resources/views/profile/notifications.blade.php index f902a04..21f2c5a 100644 --- a/resources/views/profile/notifications.blade.php +++ b/resources/views/profile/notifications.blade.php @@ -6,7 +6,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
diff --git a/resources/views/user/partials/actions.blade.php b/resources/views/profile/partials/actions.blade.php similarity index 100% rename from resources/views/user/partials/actions.blade.php rename to resources/views/profile/partials/actions.blade.php diff --git a/resources/views/user/partials/info.blade.php b/resources/views/profile/partials/info.blade.php similarity index 100% rename from resources/views/user/partials/info.blade.php rename to resources/views/profile/partials/info.blade.php diff --git a/resources/views/user/partials/profile.blade.php b/resources/views/profile/partials/profile.blade.php similarity index 100% rename from resources/views/user/partials/profile.blade.php rename to resources/views/profile/partials/profile.blade.php diff --git a/resources/views/profile/partials/sidebar.blade.php b/resources/views/profile/partials/sidebar.blade.php index 15017f4..54846bc 100644 --- a/resources/views/profile/partials/sidebar.blade.php +++ b/resources/views/profile/partials/sidebar.blade.php @@ -1,5 +1,5 @@
- @include('user.partials.profile') + @include('profile.partials.profile')
@@ -33,5 +33,5 @@
- @include('user.partials.actions') + @include('profile.partials.actions')
diff --git a/resources/views/profile/playlists.blade.php b/resources/views/profile/playlists.blade.php index 1d3e76f..5beab03 100644 --- a/resources/views/profile/playlists.blade.php +++ b/resources/views/profile/playlists.blade.php @@ -6,7 +6,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
@include('profile.partials.sidebar') diff --git a/resources/views/profile/settings.blade.php b/resources/views/profile/settings.blade.php index 81c4ac5..fa010f0 100644 --- a/resources/views/profile/settings.blade.php +++ b/resources/views/profile/settings.blade.php @@ -7,7 +7,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
@include('profile.partials.sidebar') diff --git a/resources/views/profile/watched.blade.php b/resources/views/profile/watched.blade.php index 5801b0b..841b61f 100644 --- a/resources/views/profile/watched.blade.php +++ b/resources/views/profile/watched.blade.php @@ -6,7 +6,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background')
@include('profile.partials.sidebar') diff --git a/resources/views/search/download.blade.php b/resources/views/search/download.blade.php index 1d957bb..1de05cc 100644 --- a/resources/views/search/download.blade.php +++ b/resources/views/search/download.blade.php @@ -1,4 +1,4 @@ - @include('user.partials.background') + @include('partials.background') @livewire('downloads-search') diff --git a/resources/views/search/index.blade.php b/resources/views/search/index.blade.php index 3995a2b..8053d44 100644 --- a/resources/views/search/index.blade.php +++ b/resources/views/search/index.blade.php @@ -7,7 +7,7 @@ @include('layouts.navigation')
- @include('user.partials.background') + @include('partials.background') @livewire('live-search')
@include('layouts.footer') diff --git a/resources/views/user/index.blade.php b/resources/views/user/index.blade.php deleted file mode 100644 index 1c5c277..0000000 --- a/resources/views/user/index.blade.php +++ /dev/null @@ -1,24 +0,0 @@ - - -@include('partials.head') - - -
- @include('layouts.navigation') - -
- @include('user.partials.background') -
-
- @include('user.partials.profile') -
- @include('user.partials.info') -
-
-
-
- @include('layouts.footer') -
- - -