@extends('layouts.app-admin') @section('content')

Pengumuman

{!! Form::open(['files'=>true, 'url' => ['/simpan-manajemen-pengumuman']]) !!}
@if ($errors->has('judul')) {{ $errors->first('judul') }} @endif
*Format gambar JPG/ PNG), dengan ukuran 1280 x 300 @if ($errors->has('gambar')) {{ $errors->first('gambar') }} @endif
{!! Form::close() !!}

Daftar Pengumuman

@foreach($data as $key => $value) @endforeach
No Gambar Judul Isi Penulis Tanggal Viewer Aksi
{{$key+1}} {{$value->judul}} {!! $value->isi !!} {{$value->nama}} {{date_format(date_create($value->tanggal),"d/m/Y")}} {{$value->view}}
@foreach($data as $row) @endforeach @endsection