@foreach ($data["tabs"] as $tab)
@if ($loop->first)
{{ __("app.tabs.".$tab["id"]) }}
@else
{{ __("app.tabs.".$tab["id"]) }}
@endif
@endforeach
@foreach ($data["tabs"] as $tab) @php $is_active = ""; @endphp @if ($loop->first) @php $is_active = "show active" @endphp @endif
@foreach ($tab["cards"] as $card)
{{$card["title"]}}
@if (isset($card["title_other"]) !== false) {!!$card["title_other"]!!}
@endif
{{$card["subtitle"]}} @if (isset($card["subtitle_other"]) !== false)
{!! $card["subtitle_other"] !!}
@endif
@include('layout.private._cards.'.$card["type"])
@endforeach
@endforeach