@extends('layouts.app') @section('styles') @endsection @section('content') @if ($errors->any()) @endif @if(Auth::check())

إستمارة تسجيل الإنتفاع بإعفاء جبائي


الوضعية الحالية:
@if($document->id_statut == 1) موافقة @elseif($document->id_statut == 3) عدم موافقة @elseif($document->id_statut == 4) موافقة شريطة @elseif($document->id_statut == 5) ارجاء لابداء الراي @else في الانتظار @endif
@if($document->id_statut == 3 && !empty($document->commentaire_motif))

{{ $document->commentaire_motif }}

@endif @if($document->id_statut == 4 && !empty($document->commentaire_acceptation))

{{ $document->commentaire_acceptation }}

@endif @if($document->id_statut == 5 && !empty($document->commentaire_avis))

{{ $document->commentaire_avis }}

@endif

هوية صاحب المشروع

{{ $document->utilisateur->nom_prenom ?? '-' }}
{{ $document->utilisateur->tel ?? '-' }}
{{ $document->utilisateur->email ?? '-' }}
{{ $document->utilisateur->adresse ?? '-' }}
{{ $document->nom_projet ?? '-' }}
{{ $document->adresse_projet ?? '-' }}

الوثائق المرفقة

@php $files = [ 'copie_cahier_des_charges','copie_originale','facture','contrat','fichier_arrivage','fichier_colisage', 'copie_registre_fiscal','copie_registre_national_institutions','copie_certificat_propriete','engagement','exemple_projet' ]; $labels = [ '1- نسخة من كراس الشروط','2- الاصل من شهادة ايداع التصريح','3- فاتورة','4- عقد بين المشتري و المورد','5- وثيقة الاعلام بالوصول', '6- وثيقة الشحن','7- نسخة من بطاقة التعريف الجبائي','8- نسخة من مضمون السجل الوطني للمؤسسات','9- نسخة من شهادة الملكية', '10- تعهد','11- مثال هندسي للمشروع' ]; @endphp @foreach($files as $index => $file)
@if(!empty($document->$file)) مشاهدة الملف @else - @endif
@endforeach
@else @endif
@endsection @section('scripts') @endsection