@extends('Backend.dashboard') @section('title') News @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
@foreach($news as $new) @endforeach
News Actions
{{ $new->name }} Edit Delete View
@csrf
@endsection @section('ckeditor') @endsection