@extends('back.layouts.layout') @section('title','News List') @section('content-header')

News List

@endsection @section('content')
@foreach($news as $news) @endforeach
Sl Title Description Image Status Action
{{ $loop->iteration }} {{ $news->title }} {!! $news->description !!} @if($news->image!="") @endif
@method('DELETE') @csrf
@endsection