@extends('layouts.dashboard') @section('title', 'Properties') @section('header', 'Global Property Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')

Properties (Global)

Manage all properties across the system

Add Property
@forelse($properties as $property) @empty @endforelse
Property Type Location Price Ownership Visibility Status Actions
@if($property->images->count() > 0) {{ $property->title }} @else
@endif
{{ $property->title }}
@if($property->description)
{{ Str::limit($property->description, 40) }}
@endif
{{ $property->type }} {{ $property->city }}, {{ $property->country }}
{{ number_format($property->price, 0) }}
{{ $property->currency }}
@if($property->is_system_owned) System @else {{ $property->company->name ?? 'N/A' }} @endif @if($property->visibility === 'featured') ⭐ Featured @elseif($property->visibility === 'public') 🌐 Public @else 🔒 Private @endif {{ ucfirst($property->status) }}
View Edit @if($property->visibility !== 'featured')
@csrf
@else
@csrf
@endif

No properties found

Create your first property
@if($properties->hasPages())
{{ $properties->links() }}
@endif
@endsection