@extends('layouts.app')
@section('content')
AREAS DE LA SEDE {{ $customer->name }}
# |
Nombre |
Tipo |
Area [m²] |
|
@if (!$customer->files->isEmpty())
@foreach ($customer->applicationAreas as $index => $app_area)
{{ $index + 1 }} |
{{ $app_area->name }} |
{{ $app_area->zoneType->name ?? '-' }} |
{{ $app_area->m2 }} |
|
@endforeach
@endif
@include('customer.modals.area.create')
@include('customer.modals.area.edit')
@endsection