@extends('layouts.app') @section('content')

Project Settings

@foreach (['location', 'builder', 'status'] as $type)
@csrf
Current {{ ucfirst($type) }}s:
@php // Correct pluralization $pluralMap = [ 'location' => 'locations', 'builder' => 'builders', 'status' => 'statuses', ]; $items = ${$pluralMap[$type]} ?? []; @endphp @foreach($items as $item) {{ $item }} @endforeach @if(count($items) === 0) No {{ $type }}s added yet @endif
@if(!$loop->last)
@endif @endforeach
@endsection @section('scripts') @endsection