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

Announcement List

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