@extends('layouts.app') @section('title', 'Listing Properties') @push('css') @endpush @section('content')

Manage Listings

@csrf
@forelse ($listings as $listing) @empty @endforelse
Listing ID Image Adress Type Status Listing Price created By Listing Date Action
{{ $listing['id'] }} property image {{ $listing['properties']['addresses'][0]['street'] ?? '' }}, {{ $listing['properties']['addresses'][0]['city'] ?? '' }}, {{ $listing['properties']['addresses'][0]['zip_code'] ?? '' }} {{ isset($listing['properties']) ? $listing['properties']['property_Type'] : 'N/A' }} ( {{ isset($listing['properties']) ? $listing['properties']['property_sub_type'] : 'N/A' }} ) Listing {{ isset($listing['properties']) && isset($listing['properties']['listing_price']) ? $listing['properties']['listing_price'] : 'N/A' }} @if (isset($listing['created_by']['f_name']) && isset($listing['created_by']['l_name'])) {{ $listing['created_by']['f_name'] }} {{ $listing['created_by']['l_name'] }} @else N/A @endif {{ \Carbon\Carbon::parse($listing['updated_at'])->format('Y/m/d') }}
@isset($listing['properties']) @endisset
@endsection @push('js') @endpush