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

CATEGORIAS DEL BLOG

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