@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Service Details') }}

{{ $service->title }}

{{ $service->permalink }}

@if($service->description)
Description

{{ $service->description }}

@endif @if($service->content)
Content
{!! $service->content !!}
@endif @if($service->cover_image)
Cover Image
{{ $service->title }}
@endif @if($service->featured_images)
Featured Images
@foreach($service->featured_images_array as $image)
Featured image
@endforeach
@endif
@if($service->_seo_title || $service->_seo_description || $service->_seo_tags)
SEO Information
@if($service->_seo_title)
SEO Title

{{ $service->_seo_title }}

@endif @if($service->_seo_description)
SEO Description

{{ $service->_seo_description }}

@endif @if($service->_seo_tags)
SEO Tags

{{ $service->_seo_tags }}

@endif @if($service->_canonical_url)
Canonical URL

{{ $service->_canonical_url }}

@endif
@endif
Service Status
Status
{!! $service->getStatusBadge() !!}
Created

{{ $service->created_at->format('M d, Y') }}

{{ $service->created_at->format('h:i A') }}
@if($service->updated_at != $service->created_at)
Last Updated

{{ $service->updated_at->format('M d, Y') }}

{{ $service->updated_at->format('h:i A') }}
@endif @if($service->creator)
Created By

{{ $service->creator->name }}

@endif @if($service->updater)
Updated By

{{ $service->updater->name }}

@endif
Actions
Edit Service
@include('Admin.Includes.footer')