mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 22:01:33 +00:00
133 lines
6.8 KiB
PHP
133 lines
6.8 KiB
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div class="space-y-6">
|
|
<x-admin.card>
|
|
<x-admin.page-header :title="$title" icon="fas fa-music" />
|
|
|
|
<!-- Success/Error/Warning Messages -->
|
|
@if(session('success'))
|
|
<div class="mx-6 mt-4 p-4 bg-green-50 dark:bg-green-900 border border-green-200 dark:border-green-700 rounded-lg">
|
|
<p class="text-green-800 dark:text-green-200">
|
|
<i class="fas fa-check-circle mr-2"></i>{{ session('success') }}
|
|
</p>
|
|
</div>
|
|
@endif
|
|
|
|
@if(session('error'))
|
|
<div class="mx-6 mt-4 p-4 bg-red-50 dark:bg-red-900 border border-red-200 dark:border-red-700 rounded-lg">
|
|
<p class="text-red-800 dark:text-red-200">
|
|
<i class="fas fa-exclamation-circle mr-2"></i>{{ session('error') }}
|
|
</p>
|
|
</div>
|
|
@endif
|
|
|
|
@if(session('warning'))
|
|
<div class="mx-6 mt-4 p-4 bg-yellow-50 dark:bg-yellow-900 border border-yellow-200 dark:border-yellow-700 rounded-lg">
|
|
<p class="text-yellow-800 dark:text-yellow-200">
|
|
<i class="fas fa-exclamation-triangle mr-2"></i>{{ session('warning') }}
|
|
</p>
|
|
</div>
|
|
@endif
|
|
|
|
<!-- Search Form -->
|
|
<div class="px-6 py-4 bg-gray-50 dark:bg-gray-900 border-b border-gray-200 dark:border-gray-700">
|
|
<form method="GET" action="{{ url('admin/music-list') }}">
|
|
<div class="flex gap-2">
|
|
<div class="relative flex-1">
|
|
<div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
|
|
<i class="fas fa-search text-gray-400"></i>
|
|
</div>
|
|
<input type="text"
|
|
name="musicsearch"
|
|
value="{{ $lastSearch ?? '' }}"
|
|
placeholder="Search by artist, album title..."
|
|
class="pl-10 w-full px-4 py-2 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-blue-500 dark:bg-gray-700 dark:text-white">
|
|
</div>
|
|
<button type="submit" class="px-4 py-2 bg-blue-600 dark:bg-blue-700 text-white rounded-lg hover:bg-blue-700">
|
|
Search
|
|
</button>
|
|
@if(!empty($lastSearch))
|
|
<a href="{{ url('admin/music-list') }}" class="px-4 py-2 bg-gray-600 text-white rounded-lg hover:bg-gray-700">
|
|
Clear
|
|
</a>
|
|
@endif
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- Music List Table -->
|
|
@if(!empty($musicList) && count($musicList) > 0)
|
|
<x-admin.data-table>
|
|
<x-slot:head>
|
|
<x-admin.th>ID</x-admin.th>
|
|
<x-admin.th>Title</x-admin.th>
|
|
<x-admin.th>Artist</x-admin.th>
|
|
<x-admin.th>Publisher</x-admin.th>
|
|
<x-admin.th>Year</x-admin.th>
|
|
<x-admin.th>Genre</x-admin.th>
|
|
<x-admin.th>Tracks</x-admin.th>
|
|
<x-admin.th>Cover</x-admin.th>
|
|
<x-admin.th>Actions</x-admin.th>
|
|
</x-slot:head>
|
|
|
|
@foreach($musicList as $music)
|
|
<tr class="hover:bg-gray-50 dark:hover:bg-gray-700">
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900 dark:text-gray-200">
|
|
{{ $music->id ?? 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4">
|
|
<div class="text-sm font-medium text-gray-900 dark:text-gray-200">
|
|
{{ $music->title ?? 'N/A' }}
|
|
</div>
|
|
</td>
|
|
<td class="px-6 py-4 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $music->artist ?? 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $music->publisher ?? 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $music->year ?? 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4 text-sm text-gray-500 dark:text-gray-400">
|
|
{{ \Illuminate\Support\Str::limit($music->genre ?? 'N/A', 30) }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500 dark:text-gray-400">
|
|
{{ $music->tracks ?? 'N/A' }}
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm">
|
|
@if(!empty($music->cover) && $music->cover == 1)
|
|
<span class="px-2 py-1 text-xs font-semibold rounded-full bg-green-100 text-green-800">
|
|
<i class="fas fa-check"></i> Yes
|
|
</span>
|
|
@else
|
|
<span class="px-2 py-1 text-xs font-semibold rounded-full bg-red-100 text-red-800">
|
|
<i class="fas fa-times"></i> No
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">
|
|
<a href="{{ url('admin/music-edit?id=' . $music->id) }}" class="text-blue-600 dark:text-blue-400 hover:text-blue-900">
|
|
<i class="fas fa-edit"></i> Edit
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</x-admin.data-table>
|
|
@else
|
|
<div class="px-6 py-12 text-center">
|
|
<i class="fas fa-music text-gray-400 text-5xl mb-4"></i>
|
|
<p class="text-gray-500 dark:text-gray-400 text-lg">
|
|
@if(!empty($lastSearch))
|
|
No music found matching "{{ $lastSearch }}".
|
|
@else
|
|
No music found in the database.
|
|
@endif
|
|
</p>
|
|
</div>
|
|
@endif
|
|
</x-admin.card>
|
|
</div>
|
|
@endsection
|