@extends('templates/admin') @section('titulo')

Notícias Gerencie seus posts personalizados

@stop @section('menu-noticias') active @stop @section('breadcrumbs')
  • Home
  • Notícias
  • @stop @section('styles') @stop @section('conteudo')
    @if ( count($errors) > 0)
    Erros encontrados:
      @foreach ($errors->all() as $e)
    • {{ $e }}
    • @endforeach
    @endif
    @foreach($posts as $post) @endforeach @if(count($posts) == 0) @endif
    POSTS CADASTRADAS
    Título Descrição Ações
    {{$post->titulo}} {{ closetags(mb_substr(($post->texto), 0, 100)) }} {!! Form::open( ['route' => ['posts.edit','id' => $post->id, 'subdominio' => Route::input('subdominio') ] , 'method' => 'GET', 'class'=>'form action-form'] ) !!} {!! Form::close() !!} {!! Form::open( ['route' => ['posts.destroy','id' => $post->id, 'subdominio' => Route::input('subdominio') ] , 'method' => 'DELETE', 'class'=>'form action-form'] ) !!} {!! Form::close() !!}
    Não existem posts cadastrados
    @stop @section('scripts') @stop