@extends('layouts.app') @section('content')

{{ __('app.calling_channels') }}

@if($channels->count() > 0)

{{ __('app.configured_channels') }}

@foreach($channels as $channel) @endforeach
{{ __('app.name') }} {{ __('app.provider') }} {{ __('app.status') }} {{ __('app.actions') }}
{{ $channel->name }} {{ ucfirst($channel->provider ?? 'Unknown') }}
is_active ? 'checked' : '' }}>
@csrf @method('DELETE')
@else
{{ __('app.no_channels_configured') }}

{{ __('app.add_first_channel') }}

@endif
@endsection