@extends('layouts.admin') @section('content')
| 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') }} |
{{ $point->featured_image_caption }}
@endif{{ $point->excerpt }}
| 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) }} |