@extends('layouts.admin_layout') @section('content')

Manage CIG Initiatives

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

CIG Initiatives Lists

Add
@php $i=1;@endphp @foreach($initiatives as $initiative) @endforeach
# Sorting Category Name Color Code Image Description Status Action
{{$i++}} {{$initiative->sorting}} @if(isset($initiative->cigCategory)) {{$initiative->cigCategory->name}} @endif {{$initiative->name}} {{$initiative->color_code}} {{$initiative->logo}} {!!$initiative->description!!} @if($initiative->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection