@extends('layouts.app') @section('title', 'Categorias | Veltrix v2') @section('page_title', 'Categorias') @section('page_subtitle', 'Gestion operativa en tiempo real') @section('page_icon', 'bx bxs-category') @section('content')
@if ($errors->any())
{{ $errors->first() }}
@endif
@if (has_permission('categorias.crear'))

Nueva categoria

@csrf
@else
@endif

Categorias

@forelse ($categorias as $categoria) @empty @endforelse
ID NOMBRE DESCRIPCION
{{ $categoria->id }} {{ $categoria->nombre }} {{ (string) ($categoria->descripcion ?? '') }}
No hay categorias registradas.
@endsection