@extends('layouts.app') @section('title','Tabelas do Sistema') @section('content')

Tabelas do Sistema

← Dashboard

Selecione uma tabela para visualizar, consultar ou editar seus registros. Tabelas marcadas com 🔒 são somente leitura.

@foreach($tabelas as $key => $t)
{{ $t['icone'] }}
{{ $t['label'] }} @if($t['somente_leitura']) 🔒 Leitura @endif
{{ $t['descricao'] }}
{{ is_numeric($t['total']) ? number_format($t['total']) : $t['total'] }} registro(s)
@endforeach
@endsection