@extends('admin.layouts.app') @section('title', 'Project Units') @section('breadcrumb')
| # | Project | Location | Total Units | Unit Types | Price Range | Actions |
|---|---|---|---|---|---|---|
| {{ $project->id }} |
{{ $project->title }} {{ $project->builder_name ?? '—' }} |
{{ $project->city ? $project->city . ($project->state ? ', ' . $project->state : '') : '—' }} | {{ $project->total_units ? number_format($project->total_units) : '—' }} | @if($project->units->isNotEmpty()) {{ $project->units->pluck('unit_type')->unique()->implode(', ') }} @else — @endif | {{ $project->price_range_label }} | Edit |
| No projects yet. Add one. | ||||||
Showing {{ $projects->firstItem() ?? 0 }} to {{ $projects->lastItem() ?? 0 }} of {{ $projects->total() }} results
{{ $projects->links() }}