@extends("layout") @section("content")
{{trans('messages.test-type-details')}}

{{ Lang::choice('messages.name',1) }}{{ $testtype->name }}

{{trans('messages.description')}} {{ $testtype->description }}

{{ Lang::choice('messages.test-category',1) }} {{ $testtype->testCategory->name }}

{{trans('messages.compatible-specimen')}} {{ implode(", ", $testtype->specimenTypes->lists('name')) }}

{{ Lang::choice('messages.measure',1) }} {{ implode(", ", $testtype->measures->lists('name')) }}

{{trans('messages.turnaround-time')}} {{ $testtype->targetTAT }}

{{trans('messages.prevalence-threshold')}} {{ $testtype->prevalence_threshold }}

{{trans('messages.date-created')}} {{ $testtype->created_at }}

@stop