@extends('layouts.app-admin') @section('content')

General Settings

@csrf
{{--
--}}

SEO Settings

@csrf

Appearance Settings

@csrf
@php $logoUrl = $themeSettings['logo_url'] ?? url('img/favicon.png'); $logoSrc = asset('img/favicon.png'); if (strpos($logoUrl, "http") !== false) { $logoSrc = $logoUrl; } elseif (strpos($logoUrl, ",") !== false) { $logoSrc = explode(',', $themeSettings['logo_url'] ?? ''); $smallImg = $logoSrc[2] ?? null; $filename = $smallImg ? basename($smallImg) : null; $logoSrc = $filename ? route('settings.image', ['filename' => $filename]) : asset('img/favicon.png'); } @endphp Current Logo
Recommended size: 512x512px. Max file size: 2MB.
@php $favUrl = $themeSettings['favicon_url'] ?? asset('img/favicon.png'); $favSrc = asset('img/favicon.png'); if (strpos($favUrl, "http") !== false) { $favSrc = $favUrl; } elseif (strpos($favUrl, "storage") !== false) { $favSrc = explode(',', $themeSettings['favicon_url'] ?? ''); $smallImg = $favSrc[0] ?? null; $filename = $smallImg ? basename($smallImg) : null; $favSrc = $filename ? route('settings.image', ['filename' => $filename]) : asset('img/favicon.png'); } @endphp Current Favicon
Recommended size: 32x32px or 16x16px. Max file size: 1MB.

Notification Settings

Email Notifications

Security Settings

Integrations

Google Analytics
Track website traffic and user behavior
Facebook Pixel
Track conversions from Facebook ads
YouTube API
Integrate YouTube videos and channels
Spotify API
Integrate Spotify music and playlists
{{--

Backup & Export

Database Backup

Data Export

Export Users
Export all user data
Export Songs
Export all song data
--}} {{--

Advanced Settings

Enable Maintenance Mode
Put the application into maintenance mode
These IPs will still be able to access the site during maintenance
--}}
@endsection @section('scripts') @endsection