@extends('backEnd.layouts.master') @section('title', 'Documentation') @push('styles') @endpush @section('content')

Software Documentation

নতুন user/customer-দের জন্য — প্রতিটি feature কী, কেন, কীভাবে use করবেন (বাংলা + English)

{{-- New user onboarding --}} @if(!empty($onboarding['steps']))
{{ $onboarding['title'] ?? 'নতুন user?' }} — {{ $onboarding['title_en'] ?? '' }}

Store প্রথম setup — এই order follow করলে basic confusion হবে না:

@foreach($onboarding['steps'] as $step)
{{ $step['num'] }}. {{ $step['title'] }}

{{ $step['desc'] }}

@if(!empty($step['route']) && Route::has($step['route'])) যান @endif
@endforeach
@if(!empty($onboarding['remember']))
মনে রাখুন
    @foreach($onboarding['remember'] as $line)
  • {{ $line }}
  • @endforeach
@endif
@endif
@foreach($tabs as $tab)
{{ $tab['num'] }}. {{ $tab['label'] }}
@if(!empty($tab['label_bn'])) {{ $tab['label_bn'] }} @endif @if(!empty($tab['menu_path']))
{{ $tab['menu_path'] }}
@endif
@if(!empty($tab['module'])) Module: {{ $tab['module'] }} @endif @if(!empty($tab['permission'])) Permission: {{ $tab['permission'] }} @endif

{{ $tab['summary'] ?? '' }}

@if(!empty($tab['for_new_users']))
নতুন user-দের জন্য: {{ $tab['for_new_users'] }}
@endif @if(!empty($tab['who_should_use']) || !empty($tab['when_to_use']))
@if(!empty($tab['who_should_use']))
কার জন্য

{{ $tab['who_should_use'] }}

@endif @if(!empty($tab['when_to_use']))
কখন use করবেন

{{ $tab['when_to_use'] }}

@endif
@endif @foreach($tab['blocks'] ?? [] as $block)
@include('backEnd.documentation.partials.block', ['block' => $block])
@endforeach @if(!empty($tab['tips']))
Tips — সঠিক use
    @foreach($tab['tips'] as $tip)
  • {{ $tip }}
  • @endforeach
@endif @if(!empty($tab['mistakes']))
Common Mistakes — এড়িয়ে চলুন
    @foreach($tab['mistakes'] as $m)
  • {{ $m }}
  • @endforeach
@endif @if(!empty($tab['faqs']))
FAQ — সচরাচর জিজ্ঞাসা
@foreach($tab['faqs'] as $faq)
প্রশ্ন: {{ $faq['q'] ?? '' }}
উত্তর: {{ $faq['a'] ?? '' }}
@endforeach
@endif
@endforeach
@endsection @push('scripts') @endpush