@extends('layouts.app')
@section('content')
{{ $project?->name }} › Property Types
| Name |
# Unit Categories |
# Units |
Actions |
@forelse($types as $t)
| {{ $t->name }} |
{{ $t->unit_categories_count ?? $t->unitCategories()->count() }} |
{{ $t->units_count ?? $t->unitCategories()->withCount('units')->get()->sum('units_count') }} |
Edit
|
@empty
| No property types |
@endforelse
{{ $types->links() }}
@endsection