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