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

Manage Chairperson Message

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

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

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

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

@endif

Chairperson Lists

Add
@php $i=1;@endphp @foreach($allChairPersons as $chairPerson) @endforeach
# Sorting Order Salutation Name Image Period Description Status Action
{{$i++}} {{$chairPerson->sorting}} {{$chairPerson->salutation}} {{$chairPerson->name}} {{$chairPerson->image}} {{$chairPerson->period}} {{$chairPerson->description}} @if($chairPerson->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection