@extends("layout") @section("content") @if (Session::has('message'))
{{ trans(Session::get('message')) }}
@endif
{{ trans('messages.test-category-details') }}

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

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

@stop