@extends('admin.layouts.app') @section('content') @include('admin.layouts.partial.toolbar', ['breadcrumb' => 'Service Details']);

Service Details

Category: {{ $service->category_name }}
Name: {{ $service->name }}
Description: {{ $service->description }}
Added Sub Services:
@foreach ($service->subServices as $sub) @endforeach
{{ $sub->name }} @if ($sub->status) Active @else Inactive @endif
Date of Creation: {{ $service->created_at->format('d-m-Y') }}
@endsection