@extends('layouts.cms_app') @section('content')

{{$title}}

@include('cms.includes.alert_messages')
@if(count($anuncios)>0) @foreach($anuncios as $anuncio) @endforeach @else @endif
ID STATUS CLIENTE CATEGORIA SUBCATEGORIA ATUALIZAÇÃO AÇÕES
{{$anuncio->id}} {!!statusAnuncioliteral($anuncio->status)!!} {{$anuncio->cliente->name}} {{$anuncio->categoria->label}} {{$anuncio->subcategoria->label}}
{{$anuncio->updated_at ? $anuncio->updated_at->diffForHumans() : 'Não foi atualizado!'}}
{{ csrf_field() }}
Editar
Não há anúncios cadastrados!
{{$anuncios->links()}}
@endsection