@extends('layouts.admin') {{-- Or your main user-facing layout --}} @section('title', 'Website Details: ' . ($website->name ?: 'Untitled Website')) @section('header_title', $website->name ?: 'Untitled Website') {{-- Or your layout's equivalent section --}} @section('content')
{{ Str::title(str_replace('_', ' ', $website->status)) }}
{{ $website->aiModel->name ?? 'N/A' }} ({{ $website->aiModel->provider ?? 'N/A' }})
{{ $website->aiTemplate->name ?? 'None Selected' }}
{{ $website->created_at->format('M d, Y H:i A') }}
{{ $website->last_generated_at ? $website->last_generated_at->format('M d, Y H:i A') : 'Never' }}
Your website has been generated. Download the ZIP file to host it or make further manual edits.
Download Website ZIP
To preview, download the ZIP, extract it, and open the index.html file in your browser.
Your website is currently {{ Str::lower(str_replace('_', ' ', $website->status)) }}. Please check back shortly. {{-- Consider adding auto-refresh JS if status is 'generating' --}}