@extends('admin.layouts.app')
@section('title', 'Property Types')
@section('breadcrumb')
Properties
Property Types
@endsection
@section('heading', 'Property Types')
@section('subheading', 'Manage property type classifications.')
@section('content')
{{-- Add Form --}}
{{-- Table --}}
| ID |
Type Name |
Slug |
Icon |
Properties Count |
Status |
Actions |
@foreach ([
['id' => 1, 'name' => 'Apartment', 'slug' => 'apartment', 'icon' => 'building', 'count' => 1247, 'status' => 1],
['id' => 2, 'name' => 'Villa', 'slug' => 'villa', 'icon' => 'home', 'count' => 342, 'status' => 1],
['id' => 3, 'name' => 'Plot', 'slug' => 'plot', 'icon' => 'land', 'count' => 518, 'status' => 1],
['id' => 4, 'name' => 'Commercial', 'slug' => 'commercial', 'icon' => 'office', 'count' => 456, 'status' => 1],
['id' => 5, 'name' => 'Penthouse', 'slug' => 'penthouse', 'icon' => 'building', 'count' => 189, 'status' => 1],
['id' => 6, 'name' => 'Studio', 'slug' => 'studio', 'icon' => 'home', 'count' => 95, 'status' => 1],
] as $type)
| {{ $type['id'] }} |
{{ $type['name'] }} |
{{ $type['slug'] }} |
{{ $type['icon'] }} |
{{ number_format($type['count']) }} |
|
|
@endforeach
@endsection