@foreach($categories as $category)
@if($category->services->count() > 0)
{{ ucfirst($category->name) }}
@endif @foreach($category->services as $service)

{{ ucwords($service->name) }}

{!! ($service->discount > 0) ? "".currencyFormatter($service->price)." ".currencyFormatter($service->discounted_price) : currencyFormatter($service->price) !!}
@endforeach
@endforeach