@extends('layouts.app') {{-- Or your main user-facing layout --}} @section('title', 'My AI Websites') @section('header_title', 'My AI Websites') {{-- Or your layout's equivalent section for page titles --}} @section('content')
| Name | AI Model | Status | Created At | Actions |
|---|---|---|---|---|
|
{{ $website->name ?: 'Untitled Website' }}
ID: {{ $website->id }}
|
{{ $website->aiModel?->name ?: 'N/A' }} | {{ Str::title(str_replace('_', ' ', $website->status)) }} | {{ $website->created_at->format('M d, Y H:i') }} | View Edit @if($website->status === \Modules\WebPilotAI\Models\Website::STATUS_FAILED) @endif |