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

Client Types Management

Manage client types and their configurations

All Client Types

Showing all client types (Super User)

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

No Client Types Found

Get started by creating your first client type.

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