@extends('layouts.app') @section('title', 'View Service Category') @section('content')

View Service Category

Detailed information about {{ $category->name }}

Category Information
{{ $category->name }}
{{ ucfirst($category->status) }}
Created
{{ $category->created_at->format('M d, Y H:i') }}
Last Updated
{{ $category->updated_at->format('M d, Y H:i') }}

@if($category->code) {{ $category->code }} @else Not provided @endif

{{ ucfirst($category->status) }}

@if($category->description) {{ $category->description }} @else No description provided @endif

Quick Actions
View All Categories
Category Statistics
{{ $category->status === 'active' ? 'Active' : 'Inactive' }}
Status
{{ $category->created_at->diffInDays(now()) }}
Days Active
Service Category Information
Service Category

This category represents a specific type of service (e.g., CDN, IX, Transit).

Category Usage
Services: 0
Providers: 0
Items: 0
@endsection