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

Manage Event Speakers

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

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

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

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

@endif

Event Speaker Lists

Add
@php $i=1;@endphp @foreach($event_speakers as $speaker) @endforeach
# Sorting Speaker Name Profile Image Designation Company Name Description Status Action
{{$i++}} {{$speaker->sorting}} {{$speaker->name}} {{$speaker->desktop_banner}} {{$speaker->designation}} {{$speaker->company_name}} {{$speaker->description}} @if($speaker->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection