@if ($application->type == \App\Models\Application::TYPE_SERVICE && $application->items->count() == 0)
Add Service
@elseif ($application->type == \App\Models\Application::TYPE_PRODUCT && $application->items->count() < 50)
{{-- Only show the button if the application type is product and the count is less than 50 --}}
{{-- If the application type is service, show the add service button --}}
Add Product
@endif
@if ($application->items->count() > 0)
@endif
@if ($application->type == \App\Models\Application::TYPE_PRODUCT)