@if (auth()->user()->currentProject &&auth()->user()->can("view", auth()->user()->currentProject))
{{ isset($server) ? $server->name : "Select Server" }}
@foreach (auth()->user()->currentProject->servers as $s)
{{ ucfirst($s->name) }}
@if (isset($server) && $server->id == $s->id)
@endif
@endforeach
{{ __("Servers List") }}
{{ __("Create a Server") }}
@endif