@extends('layouts.main') @section('title','Events') @section('content')
@if($message = Session::get('success'))
Success! {{ $message }}
@elseif($message = Session::get('error'))
Error!{{ $message }}
@endif
@forelse($events as $value)
status=='disable') checked @endif>
Title {{$value->title ?? "-"}}
File Name {{$value->filename ?? "-"}}
Meta Key {{$value->metakey ?? "-" }}
@empty
No Records Found
@endforelse
@endsection @section('footer') @endsection