@extends('layouts.app-general') @section('content')

CATEGORIAS DE LA CALCULADORA

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE CATEGORIAS {{ $categories->total() }}
@foreach($categories as $category) @endforeach
NOMBRE CREACIÓN
{{ $category->name }} {{ $category->created_at }}
@if(count($categories)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $categories])
@endsection