@extends('layouts.dashboard') @section('title', 'Properties') @section('header', 'Global Property Management') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
Manage all properties across the system
| Property | Type | Location | Price | Ownership | Visibility | Status | Actions |
|---|---|---|---|---|---|---|---|
|
@if($property->images->count() > 0)
{{ $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) }} | |
|
No properties found Create your first property |
|||||||