@extends('admin.layouts.app')
@section('title', 'Content Importer')
@section('content')
{{-- Content Importer Page - Dark mode UI for importing content in multiple formats --}}
{{-- Page Header: Title and description with dark background --}}
Content Importer
Import content from JSON, Markdown, HTML, Laravel Seeder, or plain text formats. Auto-detection available.
{{-- Import Form: Card with dark background, padding, rounded corners, shadow --}}
{{-- Example Formats: Collapsible section showing example formats --}}
{{-- JSON Example --}}
JSON Example
{
"title": "Product Review",
"summary": "A comprehensive review...",
"content_html": "<p>Content here...</p>",
"pros": ["Feature 1", "Feature 2"],
"cons": ["Issue 1"],
"affiliate_link": "https://example.com"
}
{{-- Markdown Example --}}
Markdown Example
# Product Title
Summary paragraph here.
## Pros
- Feature 1
- Feature 2
## Cons
- Issue 1
@push('scripts')
@endpush
@endsection