@extends('layouts.app') @section('title', 'Connection Types') @section('content')

Connection Types Management

Manage connection types and their configurations

All Connection Types

@if(isset($isSuperAdmin) && $isSuperAdmin) Showing all connection types (Super Admin) @else Showing your ISP's connection types @endif

@if(session('success')) @endif @if(session('error')) @endif
@forelse($connectionTypes as $connectionType) @empty @endforelse
ID Type Name Description Status Created Actions
{{ $connectionType->id }}
{{ $connectionType->name }}
{{ $connectionType->description ?: '-' }} @if($connectionType->is_active) Active @else Inactive @endif {{ $connectionType->created_at->format('M d, Y') }}
@csrf @method('DELETE')

No Connection Types Found

Get started by creating your first connection type.

Add First Connection Type
@section('styles') @endsection @endsection