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

Manage Board Member Category

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

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

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

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

@endif

Board Member Category Lists

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