@extends('admin.layouts.master') @section('content')
Notícias Cadastradas

{{ $notices->count() }}

  • Notícias ativas ( {{ $notices->where('fatured', 1)->count() }} )
  • Agendadas ( {{ $notices->where('fatured', 0)->count() }})
  • Não publicadas ( {{ $notices->where('fatured', 0)->count() }} )
Editoriais

@php use Carbon\Carbon; @endphp {{ $notices->where('updated_at', '>', Carbon::now())->count() }}

Publicações

{{ $publicacoes->count() }}

@endsection