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