@extends('layouts.app') @section('content')
@php $iconMap = [ 'resume' => '📄', 'portfolio' => '🎨', 'archicad_project' => '🏗️', 'revit_project' => '📐', 'vectorworks_project' => '🖊️', 'allplan_project' => '🏢', 'bim_consult' => '🌐', 'career' => '💼', 'academic' => '🎓', 'other' => '💬', ]; if(isset($selectedType) && $selectedType) { $backUrl = route('consulting'); $backLabel = __('consulting.back_to_categories', ['default' => 'بازگشت به دسته‌ها']); } else { $backUrl = route('menu'); $backLabel = __('menu.menu', ['default' => 'منو']); } @endphp
@if(isset($selectedType) && $selectedType)

{{ $iconMap[$selectedType] ?? '💬' }} @lang('consulting.types.' . $selectedType)

@else

@lang('menu.consulting', ['default' => 'مشاوره'])

مسیر حرفه‌ای خود را با راهنمایی متخصصان هموار کنید.

@endif
@if(!isset($selectedType) || !$selectedType)

@lang('consulting.select_topic', ['default' => 'موضوع مشاوره را انتخاب کنید'])

@foreach($categories as $type) {{ $iconMap[$type] ?? '💬' }} @lang('consulting.types.' . $type) @lang('consulting.active', ['default' => 'فعال']) @endforeach
@else
@foreach($plans as $plan)
{{ $plan->minutes }} @lang('consulting.minutes', ['default' => 'دقیقه'])
{{ $iconMap[$plan->type] ?? '📋' }} {{ $plan->title }}

{{ Str::limit($plan->description, 80) }}

@if($plan->price_toman == 0) @lang('consulting.free', ['default' => 'رایگان']) @else {{ number_format($plan->price_toman) }} @lang('dashboard.toman') @endif
@endforeach
@endif
@endsection @push('scripts') @endpush