@extends('layouts.master') @section('title') Inicio @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Inicio @endslot @slot('li_2') Panel Catastro @endslot @slot('title') Terrenos @endslot @endcomponent
@foreach ($terrenos as $t) @endforeach
ID Lotización Vía Manzana Lote Área (m²) Estado Acciones
{{ $t->id_terreno }} {{ $t->lotizacion->nombre_lotizacion ?? 'N/A' }} {{ $t->via->nombre_via ?? 'N/A' }} {{ $t->manzana }} {{ $t->lote }} {{ $t->area }} {{ $t->estado }}
@endsection @section('script') @endsection