@extends('admin.layouts.app')
@section('title', 'Property Features')
@section('breadcrumb')
Properties
Features
@endsection
@section('heading', 'Property Features')
@section('subheading', 'Manage property feature definitions and field types.')
@section('content')
{{-- Add Form --}}
{{-- Table --}}
| ID |
Feature |
Type |
Unit |
Properties |
Status |
Actions |
@foreach ([
['id' => 1, 'name' => 'Bedrooms', 'type' => 'Number', 'unit' => '-', 'count' => 2847, 'status' => 1],
['id' => 2, 'name' => 'Bathrooms', 'type' => 'Number', 'unit' => '-', 'count' => 2847, 'status' => 1],
['id' => 3, 'name' => 'Area', 'type' => 'Number', 'unit' => 'sq.ft', 'count' => 2847, 'status' => 1],
['id' => 4, 'name' => 'Balconies', 'type' => 'Number', 'unit' => '-', 'count' => 2156, 'status' => 1],
['id' => 5, 'name' => 'Floor', 'type' => 'Number', 'unit' => '-', 'count' => 1876, 'status' => 1],
['id' => 6, 'name' => 'Parking Spots', 'type' => 'Number', 'unit' => '-', 'count' => 2654, 'status' => 1],
] as $feature)
| {{ $feature['id'] }} |
{{ $feature['name'] }} |
{{ $feature['type'] }} |
{{ $feature['unit'] }} |
{{ number_format($feature['count']) }} |
|
|
@endforeach
@endsection