@extends('layout') @section('index-content')

Lost and Found Manager

@foreach($topic as $t)

Topic Subject: {{$t->subject}}

Topic Messsage: {{$t->message}}
@endforeach @if(count($lostFoundReplies) === 0)

No Replies at the Moment

@else

@foreach($lostFoundReplies as $one) @endforeach
Resident Id | Email Message Date Posted
{{$one->residentId}} | {{$one->email}} {{$one->message}} {{$one->date}}
@endif
@stop