@extends('layouts.app') @section('title', 'OpenVPN Servers') @section('content')
@if(session('done')) @endif @if(session('not')) @endif
{{ $servers->total() }} Servers
@forelse($servers as $server) @empty @endforelse
Server Location Type Status Actions
{{ ucwords($server->name) }}
Added {{ $server->created_at->format('M d, Y') }}
{{ $server->country_code ?? '-' }} {{ $server->city_name ?? '-' }} @if($server->type == 1) Premium @else Free @endif
status == 1 ? 'checked' : '' }}>
@if($server->config_file_url) View @endif

No servers found

Add your first OpenVPN server to get started
@if($servers->hasPages()) @endif
@endsection @section('modals') @endsection @push('style') @endpush @push('script') @endpush