@extends('back.layouts.layout') @section('title','Announcement List') @section('content-header') Announcement List Dashboard Announcement Announcement List @endsection @section('content') Add Announcement Sl Announcement Name Description Image Status Action @foreach($announcements as $announcement) {{ $loop->iteration }} {{ $announcement->title }} {!! $announcement->description !!} @if($announcement->image!="") @endif @if($announcement->status ==1)Published @else Unpublished @endif @method('DELETE') @csrf @endforeach @endsection