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

Manage Organisational Category

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

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

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

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

@endif

Organisational Category Lists

Add
@php $i=1;@endphp @foreach($categories as $category) @endforeach
# Sorting Organisational Category Status Action
{{$i++}} {{$category->sorting}} {{$category->category}} @if($category->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection