@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
News Feed
@if(Session::has('message')) @endif

News Feed List

@foreach ($data as $row) @endforeach
S.No News Image News Title New Description Posted Date Action
{{$loop->index+1}} @php $check = explode(".",$row->image); $ext = $check[1]; @endphp @if($ext == 'mp4' || $ext == 'mov' ||$ext == 'flv' ||$ext == 'webm' ) @else @endif {{$row->title}} {{$row->desc}} {{Date('d-M-Y', strtotime($row->created_at))}} Edit Delete @if ($row->publish == 0)   @else   @endif
@endsection @section('scripts') @endsection