@extends('admin.layout') @section('page-title', 'Cloth Types') @section('content')

Cloth Types

Add New Cloth Type
@forelse($clothTypes as $clothType) @empty @endforelse
Name Description Status Actions
{{ $clothType->name }} {{ $clothType->description ?? 'N/A' }} {{ $clothType->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
No cloth types found
{{ $clothTypes->links() }}
@endsection