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

Theme Management

Create and manage themes for your websites

@if(session('success')) @endif @if(session('error')) @endif
@forelse($themes as $theme)
@if($theme->preview_image) {{ $theme->name }} @else
@endif
{{ $theme->name }}
{{ $theme->is_active ? 'Active' : 'Inactive' }}

{{ $theme->author }} • v{{ $theme->version }}

{{ Str::limit($theme->description, 100) }}

@if($theme->is_premium) Premium @endif @foreach($theme->industries ?? [] as $industry) {{ $industry }} @endforeach
Components
{{ $theme->components_count ?? 0 }}
Presets
{{ $theme->presets_count ?? 0 }}
Installations
{{ $theme->website_themes_count ?? 0 }}
@empty
No Themes Yet

Get started by creating your first theme

Create Your First Theme
@endforelse
@push('scripts') @endpush @endsection