@extends('docs.public.layout')
@section('title', $article['title'] ?? _lang('Documentation'))
@push('styles')
@endpush
@section('content')
{{ $article['title'] }}
{{ $article['summary'] }}
{{ _lang('Purpose') }}
{{ $article['purpose'] }}
@if (! empty($article['fields']))
{{ _lang('Fields — what each one does') }}
| {{ _lang('Field') }} |
{{ _lang('Purpose / Meaning') }} |
{{ _lang('Where it is used') }} |
@foreach ($article['fields'] as $f)
| {{ $f['name'] }} |
{{ $f['desc'] }} |
{{ $f['connect'] ?? '—' }} |
@endforeach
{{ _lang('Fields marked * are required.') }}
@endif
@if (! empty($article['steps']))
{{ _lang('How to use') }}
@foreach ($article['steps'] as $s)
- {{ $s }}
@endforeach
@endif
@if (! empty($article['tips']))
{{ _lang('Important tips') }}
@foreach ($article['tips'] as $t)
{{ $t }}
@endforeach
@endif
@if ($related->count())
{{ _lang('Related topics') }}
@endif
@endsection