@php $latestPosts = [ [ 'title' => app()->getLocale() == 'fa' ? 'آینده معماری با هوش مصنوعی' : 'The Future of AI in Architecture', 'excerpt' => app()->getLocale() == 'fa' ? 'چطور AI طراحی را متحول می‌کند...' : 'How AI is revolutionizing design...', 'image' => 'https://picsum.photos/220/120?random=1', // تصویر تستی تصادفی 'route' => 'dashboard' ], [ 'title' => app()->getLocale() == 'fa' ? 'معرفی دوره: رندرینگ پیشرفته' : 'New Course: Advanced Rendering', 'excerpt' => app()->getLocale() == 'fa' ? 'آموزش V-Ray و لومیون...' : 'V-Ray and Lumion tutorials...', 'image' => 'https://picsum.photos/220/120?random=2', // تصویر تستی تصادفی 'route' => 'dashboard' ], [ 'title' => app()->getLocale() == 'fa' ? 'پادکست: گفتگو با معمار برجسته' : 'Podcast: Interview with a Top Architect', 'excerpt' => app()->getLocale() == 'fa' ? 'در مورد چالش‌های طراحی شهری...' : 'Discussing urban design challenges...', 'image' => 'https://picsum.photos/220/120?random=3', // تصویر تستی تصادفی 'route' => 'dashboard' ], [ 'title' => app()->getLocale() == 'fa' ? 'اصول معماری پایدار' : 'Principles of Sustainable Design', 'excerpt' => app()->getLocale() == 'fa' ? 'طراحی سبز برای آینده‌ای بهتر...' : 'Green design for a better future...', 'image' => 'https://picsum.photos/220/120?random=4', // تصویر تستی تصادفی 'route' => 'dashboard' ], [ 'title' => app()->getLocale() == 'fa' ? 'تحلیل پروژه: ویلای مدرن' : 'Case Study: The Modern Villa', 'excerpt' => app()->getLocale() == 'fa' ? 'بررسی پلان و متریال‌ها...' : 'Analyzing plans and materials...', 'image' => 'https://picsum.photos/220/120?random=5', // تصویر تستی تصادفی 'route' => 'dashboard' ], ]; @endphp

{{ __('menu.latest_posts') }}

@foreach($latestPosts as $post) {{ $post['title'] }}

{{ $post['title'] }}

{{ $post['excerpt'] }}

@endforeach