@extends('sendportal::layouts.app') @section('title', __('Email Services')) @section('heading') {{ __('Email Services') }} @endsection @section('content') @component('sendportal::layouts.partials.actions') @slot('right') {{ __('Add Email Service') }} @endslot @endcomponent
@forelse($emailServices as $service) @empty @endforelse
{{ __('Name') }} {{ __('Service') }} {{ __('Actions') }}
{{ $service->name }} {{ $service->type->name }} {{ __('Test') }} {{ __('Edit') }}
@csrf @method('DELETE')

{{ __('You have not configured any email service.') }}

@endsection