@foreach($suites as $testSuite) {{-- SHOW CHILD SUITE TITLE WITH FULL PATH --}}
@foreach($testSuite->ancestors()->get()->reverse() as $parent) {{$parent->title}} @endforeach {{$testSuite->title}}
@foreach($testSuite->testCases->sortBy('order') as $testCase) @if( in_array($testCase->id, $testCasesIds) )
@if($testCase->automated) @else @endif {{$repository->prefix}}-{{$testCase->id}} {{$testCase->title}}
@if(isset($results[$testCase->id])) @if($results[$testCase->id] == \App\Enums\TestRunCaseStatus::NOT_TESTED) Not Tested @elseif($results[$testCase->id] == \App\Enums\TestRunCaseStatus::PASSED) Passed @elseif($results[$testCase->id] == \App\Enums\TestRunCaseStatus::FAILED) Failed @elseif($results[$testCase->id] == \App\Enums\TestRunCaseStatus::BLOCKED) Blocked @endif @else Not Tested @endif
@endif @endforeach
@endforeach