@extends(layoutTenant()) @section('content')

Lista de Noticias

{!! Form::open(['url'=>routeTenant('noticias.buscar'), 'class'=>'form form-inline','style'=>'height:40px;width: 100%;']) !!} {!! Form::text('buscar', null, ['class'=>'form-control','style'=>'height:40px;width: 70%;']) !!} {!! Form::submit('buscar', ['class'=>'btn btn-primary btn-outline-success ']) !!} {!! Form::close() !!}
Noticias
@foreach($categories as $category) @endforeach
Titulo Autor Data Status Funções
{{ $category->titulo}}
{{$category->user_account->name}} {{ date('d/m/Y' ,strtotime($category->created_at))}} @if($category->status == 1) @else @endif @if(!empty($category->url)) @endif @if(!empty($category->url))
@endif
{!! $categories->links() !!}
@endsection @section('post-script') @endsection