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