@extends('layouts.admin') @section('title', $garmentType->name) @section('page-title', $garmentType->name) @section('content')
Name
{{ $garmentType->name }}
Code
{{ $garmentType->code }}
Category
{{ $garmentType->garmentCategory?->name ?? '—' }}
Base price
{{ number_format($garmentType->base_price, 2) }}
Estimated days
{{ $garmentType->estimated_days ?? '—' }}
Status
{{ $garmentType->status }}
Description
{{ $garmentType->description ?: '—' }}
@can('edit orders')Edit@endcan Back to list
@endsection