@extends($layout) @section('content') @php $apiKeyValues = $apiKeyValues ?? false; @endphp

{!! __('headlines.new_api_key') !!}

{!! $tpl->displayNotification() !!} @if ($apiKeyValues !== false && isset($apiKeyValues['id']))

Your API Key was successfully created. Please copy the key below. This is your only chance to copy it.

@else

{!! __('label.basic_information') !!}



{!! __('label.project_access') !!}

@php $currentClient = ''; $i = 0; $containerOpen = false; @endphp @foreach ($allProjects as $row) @if ($currentClient != $row['clientName']) @if ($i > 0 && $containerOpen)
@php $containerOpen = false; @endphp @endif
@php $currentClient = $row['clientName']; $containerOpen = true; @endphp @endif
@php $i++; @endphp @endforeach @if ($containerOpen)
@endif
@endif @once @push('scripts') @endpush @endonce @endsection