@extends('layout') @section('pageCss') @endsection @section('pageScripts') @endsection @section('actions')
@endsection @section('title') Announcements Control @endsection @section('content')
Add a new Announcement
{!! csrf_field() !!}

Provide the Announcement Details

@foreach($page->announcements as $item) @endforeach
# Title Details Created Start Date End Date Target Attachments
{{ $index++ }} {{ $item->title }} {{ $item->details }} {{ \Carbon\Carbon::parse($item->created_at)->diffForHumans() }} {{ \Carbon\Carbon::parse($item->date_from)->toDateString() }} {{ \Carbon\Carbon::parse($item->date_to)->toDateString() }} {{ $item->target=='all' ? 'All' : \Illuminate\Support\Str::plural(ucfirst($item->target)) }} @if($item->attachment != '') Download @else No Attachment @endif
{!! $page->announcements->render() !!}
@endsection