@extends('backoffice.dashboard') @section('content') @if(Auth::check())
@csrf @method('PUT') {{-- Important pour update --}}

{{$formulaire->type_ar}}

تفاصيل المطلب

اطلاع على المطلب

الوضعية الحالية:
@switch($projet->id_statut) @case(1) مقبول @break @case(2) في الانتظار @break @case(3) مرفوض @break @case(4) موافقة شريطة @break @case(5) إرجاء لإبداء الرأي @break @case(6) مسودّة @break @default غير محدد @endswitch
@if($projet->id_statut == 3 && !empty($projet->commentaire_motif))
{{ $projet->commentaire_motif }}
@endif
تاريخ تغيّر الوضعية
@if( ! isset($projet->statutHistories) || $projet->statutHistories->isEmpty())

لا توجد تغييرات سابقة.

@else
@foreach($projet->statutHistories as $hist) @php $from = optional($hist->fromStatut)->statut_ar ?? optional($hist->fromStatut)->libelle_ar ?? '—'; $to = optional($hist->toStatut)->statut_ar ?? optional($hist->toStatut)->libelle_ar ?? '—'; $toId = optional($hist->toStatut)->id_statut; $badgeClass = $toId === 1 ? 'badge-success' : ($toId === 3 ? 'badge-danger' : 'badge-muted'); $changer = optional($hist->changer)->nom_prenom ?? optional($hist->changer)->email ?? 'نظام'; @endphp
{{ $hist->created_at->format('d/m/Y H:i') }}
بواسطة: {{ $changer }}
{{ $from }} {{ $to }}
@if($hist->commentaire)
سبب / تعليق
{{ $hist->commentaire }}
@endif
@endforeach
@endif
المستثمر
{{ $projet->investissements->first()?->utilisateur->nom_prenom ?? '-' }}
{{ $projet->investissements->first()?->utilisateur->lieu_naissance ?? '-' }}
{{ $projet->investissements->first()?->utilisateur->date_naissance ?? '-' }}
{{ $projet->investissements->first()?->utilisateur->typeIdentite->type_ar ?? '-' }}
@php $typeIdentite = $projet->investissements->first()?->utilisateur->id_type_identite; @endphp @if($typeIdentite == 1)
{{ $projet->investissements->first()?->utilisateur->cin ?? '-' }}
@elseif($typeIdentite == 2)
{{ $projet->investissements->first()?->utilisateur->passport ?? '-' }}
@elseif($typeIdentite == 3)
{{ $projet->investissements->first()?->utilisateur->num_fiscal ?? '-' }}
@endif
@php $user = $projet->investissements->first()?->utilisateur; @endphp @if($user && $user->id_type_identite == 1)
{{ $user->date_delivrance_cin ?? '-' }}
{{ $user->lieu_delivrance_cin ?? '-' }}
@endif
{{ $user->adresse ?? '-' }}
{{ $projet->niveau_etude_user ?? '-' }}
{{ $projet->dernier_diplome_user ?? '-' }}
خصائص المشروع الترفيهي
espace_spectacle ? 'checked' : '' }} disabled>
espace_sportif) ? 'checked' : '' }}>
espace_activite_service) ? 'checked' : '' }}>
espace_activite_culturelle) ? 'checked' : '' }}>
طبيعة المشروع
{{ $projet->natureProjet->nature_ar ?? 'غير محدد' }}
{{ $projet->nom_projet ?? 'غير محدد' }}
{{ $projet->adresse_siege ?? 'غير محدد' }}
@php $selectedType = $type_imm->firstWhere('id_type', $projet->id_immo) ?? null; @endphp {{ $selectedType?->type_ar ?? 'غير محدد' }}
@php $certPath = $projet->certif_class_immobiliere ?? null; @endphp @if($certPath) عرض الملف الحالي @else غير محدد @endif
@php $selectedUsage = $usage_immo->firstWhere('id_usage_imm', $projet->id_usage_immo) ?? null; @endphp {{ $selectedUsage?->usage_ar ?? 'غير محدد' }}
@php $contratPath = $projet->copie_contrat_loc_prop ?? null; @endphp @if($contratPath) عرض الملف الحالي @else غير محدد @endif
{{ optional($gouvernorats->firstWhere('id_gouver', $projet->gouvernorat_id))->nom_ar ?? 'غير محدد' }}
{{ optional($delegations->firstWhere('id_delegation', $projet->delegation_id))->nom_ar ?? 'غير محدد' }}
{{ $projet->code_postal ?? 'غير محدد' }}
عدد مواطن الشغل المؤملة
{{ $projet->nbr_diplome_universitaire ?? '-' }}
{{ $projet->nbr_autre ?? '-' }}
مدير المؤسسة
{{ $projet->directeur->nom_prenom_d ?? '-' }}
{{ $projet->directeur->num_cin ?? '-' }}
{{ $projet->directeur->date_delivrance ?? '-' }}
{{ $projet->directeur->lieu_delivrance ?? '-' }}
{{ $projet->directeur->niveau_etude ?? '-' }}
{{ $projet->directeur->dernier_diplome_obtenu ?? '-' }}
بيانات عن الاستثمار و التمويل
@forelse($projet->investissements as $inv) @empty @endforelse
الإستثمار المبلغ مصادر التمويل الملاحظات
{{ $inv->secteur_invest_id }} {{ $inv->montant_inv }} {{ $inv->source }} {{ $inv->remarques }}
لا توجد بيانات
(*) اموال ذاتية, قروض طويلة المدى, قروض متوسطة المدى, قروض صغيرة المدى, منح, مواد اخرى.
تصريح على الشرف
إني الممضي أسفله أشهد بصحة البيانات التي تضمنتها هذه الإستمارة كما أصرح أني لم أتعرض إلى أي عقاب جزائي أو إداري من شأنه أن يحجر على إدارة و تسيير مؤسسة أو الإستثمار في الأنشطة المنصوص عليها.
ملاحظات خاصة بالمندوبية الجهوية للشباب و الرياضة و التربية البدنية
رجوع
@else @endif @endsection