@extends('backend.layouts.app') @section('content')
{{session()->get('title')}} List Add {{session()->get('title')}}
@foreach ($newses as $news) @endforeach
Sl. Date Title Attachment Description Action
{{ $loop->iteration }} {{ date('d/m/Y',strtotime($news->date)) }} {{ $news->title }} @if($news->pdf) View Attachment @else No Attachment Found @endif {!! $news->description !!}
@endsection