@extends('layout.master') @push('plugin-styles') @endpush @section('content')

Initiative # {{$initiatives->id}}

Basic Form
@if($initiatives->title)

{{$initiatives->title}}

@endif @if($initiatives->sub_title)

{{$initiatives->sub_title}}

@endif @if($initiatives->description != null)

{!!$initiatives->description!!}

@endif

@if($initiatives->impact == 'low') Low @endif @if($initiatives->impact == 'moderate') Moderate @endif @if($initiatives->impact == 'large') Large @endif

@if($initiatives->cost_of_implementation == 'low') Low @endif @if($initiatives->cost_of_implementation == 'medium') Medium @endif @if($initiatives->cost_of_implementation == 'high') High @endif

@if(get_category_by_id($initiatives->category_id) != null)

{{get_category_by_id($initiatives->category_id)->title}}

@endif @if(get_category_by_id($initiatives->sub_category_id) != null)

{{get_category_by_id($initiatives->sub_category_id)->title}}

@endif @if(get_language_by_id($initiatives->language_id) != null)

@endif @if($attach_approve)
@foreach($attachments as $attachment)

{{$attachment}}

@endforeach
@endif
@endsection