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

Manage Board Members

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

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

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

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

@endif

Board Members List

Add
@php $i=1;@endphp @foreach($members as $member) @endforeach
# Sorting Salutation Category Type Name Photo Designation Company Name Description Period Linkedin Link Twitter link Facebook link Status Action
{{$i++}} {{$member->sorting}} {{$member->boardMemberCategory->name}} {{$member->salutation}} {{$member->name}} {{$member->image}} {{$member->designation}} {{$member->company_name}} {!!$member->description!!} {{date('d F Y', strtotime($member->from_date))}} - {{date('d F Y',strtotime($member->to_date))}} {{$member->linkedin_link}} {{$member->twitter_link}} {{$member->facebook_link}} @if($member->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection