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

{{ $facility->name }}

{{ $facility->code }}

+ New Occurrence
@if($occurrences->isEmpty())
No occurrences yet.
@else @foreach($occurrences as $o) @endforeach
Code Dates
{{ $o->occurrence_code }} {{ $o->start_date }} → {{ $o->end_date }}
@endif
@endsection