@extends('layouts.app', ['title' => 'Ajuda']) @section('content')
@foreach($groups as $group => $topics)

{{ $group }}

@foreach($topics as $topic)
{{ $topic['title'] }}

{{ $topic['purpose'] }}

@if(($topic['actions'] ?? []) !== [])

O que você pode fazer

    @foreach($topic['actions'] as $action)
  • {{ $action }}
  • @endforeach
@endif @if(($topic['fields'] ?? []) !== [])

Campos principais

@foreach($topic['fields'] as $field => $description)
{{ $field }}
{{ $description }}
@endforeach
@endif @if(($topic['buttons'] ?? []) !== [])

Botões e ações

@foreach($topic['buttons'] as $button => $description)
{{ $button }}
{{ $description }}
@endforeach
@endif @if(($topic['workflow'] ?? []) !== [])

Fluxo recomendado

    @foreach($topic['workflow'] as $step)
  1. {{ $step }}
  2. @endforeach
@endif @if(($topic['attention'] ?? []) !== [])
Atenção: {{ implode(' ', $topic['attention']) }}
@endif @if(! empty($topic['permissions']))

Permissões: {{ $topic['permissions'] }}

@endif @if(! empty($topic['link_route'])) Abrir esta área @endif
@endforeach
@endforeach
@endsection