@extends('layouts/contentNavbarLayout') @section('title', 'Managers') @section('content')

Residents / Guests (Max allowed : {{ Auth::user()->community->max_guest_allowed != 0 ? Auth::user()->community->max_guest_allowed : "Unlimited" }})

Guest List
@if(Auth::user()->community->max_guest_allowed > $guest_count)
Add Guest
@endif
@include('guest.table')
@endsection @section('page-script') @endsection