@if($testCase->priority == \App\Enums\CasePriority::LOW)
@elseif($testCase->priority == \App\Enums\CasePriority::MEDIUM)
@elseif($testCase->priority == \App\Enums\CasePriority::HIGH)
@endif
@if($testCase->automated)
@else
@endif
{{$repository->prefix}}-{{$testCase->id}}
{{$testCase->title}}
@if(isset( $data->preconditions) && !empty($data->preconditions) )
Preconditions
{!! $data->preconditions !!}
@endif
@if(isset($data->steps) && !empty($data->steps))
Steps
@foreach($data->steps as $id => $step)
@if(isset($step->action))
{!! $step->action !!}
@endif
@if(isset($step->result))
{!! $step->result !!}
@endif
@endforeach
@else
No additional details available.
@endif