@php $pageName = "objectives"; $subpageName = "objectives"; @endphp @extends('layouts.app') @section('content')
Objectives List
{{--
--}}
@if (session('message_success'))
{{session('message_success')}}
@endif @if (session('message_error'))
{{session('message_error')}}
@endif
@if(count($objectives) > 0) @foreach($objectives as $index => $objective) @endforeach @endif
# Objective Description Project Actions
{{ $index + 1 }} {{ $objective->title ?? 'N/A' }} {{ $objective->description ?? 'N/A' }} {{ $objective->project->title ?? 'N/A' }} Indicators
@include('objective.indicator-modal'); @endsection @section('scripts') @endsection