@extends('layouts.customer') @section('title', 'Reply Servers') @section('page-title', 'Reply Servers') @section('content')
Search
@customercan('servers.permissions.can_add_reply_servers') Add Server @endcustomercan
@forelse($servers as $server) @empty @endforelse
Name Hostname Username Reply Domain Active Actions
{{ $server->name }} {{ $server->hostname }} {{ $server->username }} {{ $server->reply_domain ?? '—' }} {{ $server->active ? 'Yes' : 'No' }}
View @if($server->customer_id) @customercan('servers.permissions.can_edit_reply_servers') Edit @endcustomercan @customercan('servers.permissions.can_delete_reply_servers')
@csrf @method('DELETE') Delete
@endcustomercan @endif
No reply servers found.
@if($servers->hasPages())
{{ $servers->links() }}
@endif
@endsection