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

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

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

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

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

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

@endif
@endsection