@extends('layouts.admin') @section('title') Admin | Service Details @endsection @section('content')

Service/Details

Service Details
  • Title: {{ $service->name }}
  • Price: {{config('app.currency_sign')}} {{ $service->price }}
  • Description: {!! $service->description !!}
  • Image: @if(!empty($service->image_url) )
    {{ $service->name }}
    @endif
  • Gallery images: @if($service->gallery_images)
    @foreach($service->gallery_images as $img) @endforeach
    @endif
  • Deliverables: {!! $service->deliverables ?? '' !!}
  • Capabilities: {!! $service->capabilities ?? '' !!}
  • Category: {{ $service->category->name ?? 'Uncategorized' }}
  • Status: {{ $service->is_active ? 'Active' : 'Inactive' }}
  • Sort Order: {{ $service->sort_order }}
  • Meta Title: {{ $service->meta_title }}
  • Meta Description: {!! $service->meta_description !!}
  • Meta Keywords: {{ $service->meta_keywords }}
  • Created by: {{ $service->creator->full_name ?? 'System' }}
  • Updated by: {{ $service->updater->full_name ?? '—' }}
  • Created at: {{ $service->created_at->format('M d, Y H:i') }}
  • Last updated: {{ $service->updated_at->format('M d, Y H:i') }}
@endsection