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

⭐ Featured Properties

View All Properties
@forelse($properties as $property) @empty @endforelse
Property Location Price Ownership Actions
{{ $property->title }}
{{ $property->city }}, {{ $property->country }} {{ number_format($property->price, 0) }} {{ $property->currency }} @if($property->is_system_owned) System @else {{ $property->company->name ?? 'N/A' }} @endif View Edit
@csrf
No featured properties found.
@if($properties->hasPages())
{{ $properties->links() }}
@endif
@endsection