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

Lost and Found Board

@if (count($lostFoundTopics) === 0)

No Topics Posted

@else @foreach($lostFoundTopics as $one)
{{$one->subject}}
Replys {{$one->reply_count}}

{{$one->message}}

Posted By: {{$one->email}}Date: {{$one->date}}
@if ($one->residentId === session()->get('resident_id')) @endif
@endforeach @endif {{ $lostFoundTopics->appends(Request::except('page'))->links() }}
@stop