@extends('layouts.app') @section('title', 'Hizmetler') @section('eyebrow', 'HİZMET KATALOĞU') @section('heading', 'Hizmetler & Fiyatlar') @section('content')
@foreach($categories as $category)
{{ str_replace('_', ' ', mb_strtoupper($category->value)) }}

{{ $category->label() }}

{{ ($services[$category->value] ?? collect())->count() }} hizmet
@forelse($services[$category->value] ?? [] as $service)
{{ $service->name }}{{ $service->duration_minutes }} dk @if($service->vin_required) · VIN gerekli@endif
₺{{ number_format((float)$service->base_price, 2, ',', '.') }}{{ $service->is_active ? 'Aktif' : 'Pasif' }}
@empty

Bu kategoride henüz hizmet yok.

@endforelse
@endforeach
@endsection