@extends('layouts.app') @section('pageTitle', 'Facilities') @section('content')

Facilities List

@if(request()->has('name')) @foreach($facilities as $facility) @endforeach
Name Action Show In Property Show In Project
{{ $facility->name }} {{ $facility->show_in_property }} {{ $facility->show_in_project }} Edit Delete
@else

Please enter search criteria to view facility.

@endif
@endsection