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

Categorias

@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
Filtros

@if(count($categorias) == 0 ) @else @foreach($categorias as $categoria) @endforeach @endif
Código Nome Ação
Nenhum registro Nenhum registro Nenhum registro
{{$categoria->codigo}} {{$categoria->nome}}
{{ $categorias->onEachSide(4)->links() }}
@if(isset($categoria))
@method('delete') @csrf
@endif @stop @section('css') @stop @section('js') @stop