@extends('layouts.app') {{-- 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')
Last Deployed To: {{ $website->deployment_details['host'] ?? 'N/A' }} @if(isset($website->deployment_details['type'])) (Type: {{ strtoupper($website->deployment_details['type']) }}) @endif
@if(isset($website->deployment_details['remote_path']))Remote Path: {{ $website->deployment_details['remote_path'] }}
@endif @if(isset($website->deployment_details['deployed_at']))Deployment Time: {{ \Carbon\Carbon::parse($website->deployment_details['deployed_at'])->format('M d, Y H:i A') }}
@endif @endif{{ $page['filename'] ?? 'N/A' }})