@extends('layouts.admin') @section('title', 'Sold Properties Portfolio') @section('content')
Managed Properties
@forelse($properties as $property) @empty @endforelse
Listing BMV Percentage Created At Actions
Property
{{ $property->location }}
{{ Str::limit(strip_tags($property->description), 50) }}
{{ $property->bmv_percentage }}% {{ $property->created_at->format('M d, Y') }}
@csrf @method('DELETE')
No properties found in portfolio.
Add First Property
@if($properties->hasPages())
{{ $properties->links('pagination::bootstrap-5') }}
@endif @endsection