@extends('layouts.admin') @section('content')
Points Details
Title: {{ $point->title }}
Slug: {{ $point->slug }}
Points Value: {{ $point->points_value }}
Points Type: {{ $point->points_type }}
Status: {{ ucfirst($point->status) }}
Featured: {{ $point->is_featured ? 'Yes' : 'No' }}
Sort Order: {{ $point->sort_order }}
Publish Date: {{ $point->published_at ? $point->published_at->format('M d, Y H:i') : 'Immediately' }}
Created: {{ $point->created_at->format('M d, Y H:i') }}
Last Updated: {{ $point->updated_at->format('M d, Y H:i') }}
@if($point->featured_image)
Featured Image
{{ $point->featured_image_alt ?? $point->title }} @if($point->featured_image_caption)

{{ $point->featured_image_caption }}

@endif
@endif @if($point->banner_image)
Banner Image
{{ $point->banner_image_alt ?? $point->title }}
@endif
@if($point->excerpt)
Excerpt

{{ $point->excerpt }}

@endif
Content
{!! $point->content !!}
SEO Information
Meta Title: {{ $point->meta_title ?? $point->title }}
Meta Description: {{ $point->meta_description ?? $point->excerpt }}
Meta Keywords: {{ $point->meta_keywords }}
Meta Robots: {{ $point->meta_robots ?? 'index, follow' }}
Canonical URL: {{ $point->canonical_url ?? route('pages.points', $point->slug) }}
@if($point->author) Created by: {{ $point->author->name }} @endif
@csrf @method('DELETE')
@endsection