@extends('admin.layouts.master') @section('content')

Notifications

List

@forelse ($news_events as $key => $event ) @empty @endforelse
SL No. News Section Title Action
{{$key+1}} @php $newsTypeIds = explode(',', $event->news_type_id); $newsTypes = DB::table('news_sections')->whereIn('id', $newsTypeIds)->get(); @endphp @foreach ($newsTypes as $types) {{$types->name}}
@endforeach
{{$event->title}}
{{$event->description}}

@if ($event->pdf_file != null) File @elseif ($event->url != null) Click here to visit the link @elseif ($event->details != null) {!!$event->details!!} @endif
@if ($event->status == 'publish') Unpublish @else Publish @endif
No Tenders Uploaded Yet
@endsection