{{-- Extends layout --}} @extends(((Auth()->user()) ? 'layout.app_private' : 'layout.app_public' )) {{-- Content --}} @section('content') @if (Auth()->user())
@else
@endif
@if (Auth()->user())

{{__("static_pages.".$data["name"].".title")}}

@else

{{__("static_pages.".$data["name"].".title")}}

@endif
@foreach ($data["common"] as $key => $item)

{{__("static_pages.download.".$key.".title")}}

{{__("static_pages.download.".$key.".subtitle")}}

{{__("static_pages.download.".$key.".button_label")}}

@endforeach
@foreach ($data["pell_static"] as $key_subsection => $subsection)

{{__("static_pages.download.".$key_subsection)}}

@foreach ($subsection as $key_item => $data_item) @if ($data_item["type"] === "link") {{__("static_pages.download.pell_static.items.".$key_subsection.".".$key_item.".title")}} @else {{__("static_pages.download.pell_static.items.".$key_subsection.".".$key_item.".title")}} @endif

{{__("static_pages.download.pell_static.items.".$key_subsection.".".$key_item.".desc")}}

@endforeach
@endforeach
@foreach ($data["pell_dynamic"] as $key_subsection => $subsection)

{{__("static_pages.download.".$key_subsection)}}

@foreach ($subsection as $key_item => $data_item) @if ($data_item["type"] === "link") {{__("static_pages.download.pell_dynamic.items.".$key_subsection.".".$key_item.".title")}} @else {{__("static_pages.download.pell_dynamic.items.".$key_subsection.".".$key_item.".title")}} @endif

{{__("static_pages.download.pell_dynamic.items.".$key_subsection.".".$key_item.".desc")}}

@endforeach
@endforeach
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection