@extends('adminlte::page') @section('title', 'Assuntos') @section('content_header')

Assuntos

Nova Assunto
@stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif
@if(count($assuntos) == 0 ) @else @foreach($assuntos as $assunto) @endforeach @endif
Código Nome Ação
Nenhum registro Nenhum registro Nenhum registro
{{$assunto->codigo}} {{$assunto->assunto}}
{{ $assuntos->onEachSide(4)->links() }}
@method('DELETE') @csrf
@stop @section('js') @stop