@extends('admin.layout.admin') @section('content')
@foreach($properties as $key => $property) @endforeach
Sno Image Property Name Price Description Updated At Action
{{$key +1}} {{$property['property']->name ?? 'Null'}} ${{$property['property']->price ?? 'Null'}} {{Str::words($property['property']->description,'5') ?? 'Null'}} {{$property['property']->updated_at->diffForHumans() ?? 'Null'}}
@endsection