@extends('layouts.admin')
@section('title', $garmentCategory->name)
@section('page-title', $garmentCategory->name)
@section('content')
- Name
- {{ $garmentCategory->name }}
- Code
- {{ $garmentCategory->code }}
- Status
- {{ $garmentCategory->status }}
- Description
- {{ $garmentCategory->description ?: '—' }}
@if($garmentCategory->garmentTypes->isNotEmpty())
Garment types ({{ $garmentCategory->garmentTypes->count() }})
@foreach($garmentCategory->garmentTypes as $gt)
-
{{ $gt->name }}
{{ $gt->code }} · {{ number_format($gt->base_price, 2) }}
@endforeach
@endif
@endsection