Name: {{ $apiSource->name }}
Status:
{{ ucfirst($apiSource->status) }}
URL:
{{ Str::limit($apiSource->url, 30) }}
Method:
{{ $apiSource->method }}
Table: {{ $apiSource->table_name }}
Auth: {{ $apiSource->auth_type == 'none' ? 'None' : ucfirst(str_replace('_', ' ', $apiSource->auth_type)) }}
Schedule: {{ ucfirst($apiSource->schedule_type) }}
@if($apiSource->schedule_frequency && $apiSource->schedule_type !== 'manual')
({{ $apiSource->schedule_frequency }})
@endif