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

ENTRADAS AL BLOG

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE ENTRADAS {{ $blog_entries->total() }}
@foreach($blog_entries as $blog_entry) @endforeach
TITULO ESTADO CREACIÓN
{{ $blog_entry->title }} @if($blog_entry->status==1) Activada @else Desactivada @endif {{ $blog_entry->created_at }}
@if(count($blog_entries)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $blog_entries])
@endsection