@extends('layout') @section('title') Welcome {{ $page['companyName'] }} @endsection @section('content') @if(count($announcements) !=0)
@foreach($announcements as $announcement)
{{ $announcement->title }}
{{ $announcement->details }}
@if($announcement->attachment != null) @endif
{{ $announcement->created_at }}
@endforeach {!! $announcements->render() !!}
@else
No New Announcements
@endif @endsection