@can('viewServices', $this->applicationId)
{{ __('Select services') }}
{{ __('Company name') }}:
@if ($contractDates)
{{ __('Contracts') }}:
@endif
@if ($selectedContractId)
@foreach ($contracts as $service)
@if (!in_array($service['id'], $selectedContracts->pluck('id')->toArray()))
@include('livewire.applications.toggle-selection')
@endif
@endforeach
@endif
@endcan
{{ __('Selected Services') }}
({{ $this->applicationId->total_base_price }}
{{ $this->applicationId->currency->symbol }})
@foreach ($selectedContracts as $service)
@include('livewire.applications.toggle-selection')
@endforeach