@extends('dashboard.layouts.app') @section('title', 'Détails PTA - UAC eservices') @section('page-title', 'Détails du Plan de Travail Annuel') @section('breadcrumb') @endsection @section('content')

{{ $plan->titre }}

Modifier
@csrf @method('DELETE')
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

{{ $plan->annee }}

Année

{{ $plan->objectifsStrategiques->count() }}

Objectifs Stratégiques

{{ number_format($plan->budget_total, 0, ',', ' ') }} FCFA

Budget Total
Description Générale
@if($plan->description_generale)

{{ $plan->description_generale }}

@else

Aucune description fournie

@endif
Objectifs Stratégiques
Ajouter un objectif
@if($plan->objectifsStrategiques->count() > 0)
@foreach($plan->objectifsStrategiques as $objectif) @endforeach
Libellé Contexte Budget Actions
{{ $objectif->libelle }} @if($objectif->contexte) {{ Str::limit($objectif->contexte, 50) }} @else - @endif {{ number_format($objectif->budget_total_produit, 0, ',', ' ') }} FCFA
@csrf @method('DELETE')
@else
Aucun objectif stratégique pour le moment. Cliquez sur "Ajouter un objectif" pour commencer.
@endif
Créé le

{{ $plan->created_at->format('d/m/Y à H:i') }}

Dernière modification

{{ $plan->updated_at->format('d/m/Y à H:i') }}

@endsection