@extends('layouts.app') @section('title', 'معرض أعمال المتدرب: ' . ($talent->name ?? 'غير معروف') . ' - منصة ابدأ') @section('content')
العودة إلى سوق المواهب

معرض أعمال: {{ $talent->name }}

استكشف المشاريع والإنجازات التي تثبت مهارات المتدرب

{{ $talent->name }}

{{ $talent->email }}

متدرب مؤهل

المهارات المتقنة

@foreach($talent->skills as $skill) {{ $skill->skill_name }} @endforeach

{{ $talent->enrolledCourses->count() }}

كورس معتمد

{{ $talent->skills->count() }}

مهارة متقنة

معرض الأعمال

@if($portfolios && $portfolios->count() > 0)
@foreach($portfolios as $item)
@if($item->type === 'image')
@php $fileExists = Storage::disk('public')->exists($item->file_path); $imageUrl = $fileExists ? asset('storage/' . $item->file_path) : 'https://placehold.co/600x400/1e3a8a/FFFFFF?text=' . urlencode('نموذج عمل'); @endphp {{ $item->title }} @else
@endif

{{ $item->title }}

{{ Str::limit($item->description, 120) }}

@if($item->type !== 'image') @php $fileExists = Storage::disk('public')->exists($item->file_path); $downloadUrl = $fileExists ? asset('storage/' . $item->file_path) : '#'; @endphp @if($fileExists) تحميل الملف @else ملف غير متوفر @endif @endif
@endforeach
@else

هذا المتدرب بدأ مسيرته للتو، اطلع على مهاراته المتقنة في الكورسات أعلاه

@endif
@endsection