{{-- resources/views/admin/properties/show.blade.php --}} @extends('admin.layouts.app') @section('title', $property->name) @section('page_title', $property->name) @section('breadcrumb') Properties → {{ $property->name }} @endsection @section('content') @php $owner = $property->users->firstWhere('is_property_owner', true); $application = $property->application; @endphp
No users yet
| Name | Role | Verified | Last Login | Status | |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
@if($user->is_property_owner)
Owner
@endif
|
{{ $user->email }} | {{ $user->account_type }} | @if($user->email_verified_at) @else @endif | {{ $user->last_login_at?->diffForHumans() ?? 'Never' }} | @if($user->is_active) Active @else Inactive @endif |