@extends('Backend.dashboard') @section('title') Announcements @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($announcements as $announcement) @endforeach
Announcements Actions
{{ $announcement->name }} Edit Delete View

List Of Categories

@foreach($announcement_cats as $cat) @endforeach
Categories Actions
{{ $cat->name }} Edit Delete

Add New Category

@csrf
@csrf
@endsection @section('ckeditor') @endsection