@extends('admin.layouts.app') @section('title', 'Property Status') @section('breadcrumb')
  • Properties
  • Status
  • @endsection @section('heading', 'Property Status') @section('subheading', 'Manage listing status types and badge colors.') @section('content') {{-- Add Form --}}

    Add Status

    @csrf
    Preview
    {{-- Table --}}
    @foreach ([ ['id' => 1, 'name' => 'For Sale', 'color' => '#10b981', 'badge' => 'bg-emerald-50 text-emerald-600', 'count' => 1543], ['id' => 2, 'name' => 'For Rent', 'color' => '#3b82f6', 'badge' => 'bg-blue-50 text-blue-600', 'count' => 1304], ['id' => 3, 'name' => 'Sold', 'color' => '#6b7280', 'badge' => 'bg-gray-100 text-gray-500', 'count' => 412], ['id' => 4, 'name' => 'Rented', 'color' => '#8b5cf6', 'badge' => 'bg-violet-50 text-violet-600', 'count' => 289], ['id' => 5, 'name' => 'Under Offer', 'color' => '#f59e0b', 'badge' => 'bg-amber-50 text-amber-600', 'count' => 156], ['id' => 6, 'name' => 'Coming Soon', 'color' => '#ec4899', 'badge' => 'bg-pink-50 text-pink-600', 'count' => 43], ] as $status) @endforeach
    ID Status Name Color Badge Preview Properties Count Actions
    {{ $status['id'] }} {{ $status['name'] }}
    {{ $status['color'] }}
    {{ $status['name'] }} {{ number_format($status['count']) }}
    @endsection