Init
This commit is contained in:
12
resources/views/playlist/index.blade.php
Normal file
12
resources/views/playlist/index.blade.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<x-app-layout>
|
||||
<x-slot name="header">
|
||||
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight z-10">
|
||||
{{ __('nav.public-playlists') }}
|
||||
</h2>
|
||||
</x-slot>
|
||||
|
||||
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
|
||||
@include('user.partials.background')
|
||||
@livewire('playlists')
|
||||
</div>
|
||||
</x-app-layout>
|
6
resources/views/playlist/list.blade.php
Normal file
6
resources/views/playlist/list.blade.php
Normal file
@@ -0,0 +1,6 @@
|
||||
<x-app-layout>
|
||||
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
|
||||
@include('user.partials.background')
|
||||
@livewire('playlist-overview', ['playlist_id' => $playlist->id])
|
||||
</div>
|
||||
</x-app-layout>
|
Reference in New Issue
Block a user