@extends('layouts.main', ['pageTitle' => 'My Office']) @section('main-content')
@if(count(auth()->user()->offices) > 0 ) @foreach(auth()->user()->offices as $office)
{{ $office->display_name }}
Status: {{ $office->status ? 'Active' : 'Inactive' }}
Users: {{ count($office->users) }}
@endforeach @else
You do not belong to any Office.
@endif
@endsection