@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status'))

{{ Session::get('submit-status') }}

@endif

News Listing

@if(count($all_news) > 0) @foreach($all_news AS $news) @endforeach @else @endif
Image Title Description Status Action
@if($news->image && file_exists(public_path() ."/upload/news_image/resize/".$news->image)) {{$news->title}} @else @endif {{$news->title}} {{$news->description}} @if($news->status == '1') Active @else Inactive @endif  
There is no news available
{{--
{!! $all_news->links('') !!}
--}}
@endsection