@extends('adminlte::page') @section('title', 'Pengumuman') @section('content_header')

Pengumuman

@stop @section('content')

Daftar Pengumuman

@if(session('success')) @endif @foreach($pengumuman as $key => $item) @endforeach
No Judul Status Gambar Aksi
{{ $key + 1 }} {{ $item->judul }} @if($item->is_active == 1) Aktif @else Tidak Aktif @endif @if($item->gambar && $item->gambar != 'nophoto.jpg') @else No Image @endif
@csrf @method('DELETE')
@stop @section('css') @stop @section('js') @stop