@extends('layouts.app') @section('titulo', $meta['titulo']) @section('contenido')

{{ $meta['titulo'] }}

Nuevo
@foreach($meta['campos'] as $c)@endforeach @forelse($registros as $r) @foreach($meta['campos'] as $c) @php $val = $r->{$c[0]} ?? null; @endphp @endforeach @empty @endforelse
{{ $c[1] }}Acciones
@if($c[2]==='bool') {{ $val ? 'Sí' : 'No' }} @elseif($c[2]==='color' && $val) {{ $val }} @else {{ $val }} @endif
@csrf @method('DELETE')
Sin registros
{{ $registros->links() }}
@endsection