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

Notifications

List

@forelse ($news_events as $key => $event ) {{-- --}} @empty @endforelse
Date News Section Title Action
{{date('d M, Y',strtotime($event->date))}} @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) @else @endif @if ($event->status == '1') Active @else Inactive @endif
No Tenders Uploaded Yet
@endsection