@extends('default.layout') @section('content')
Lista de Categorias
add
Nova Categoria
@if(session()->has('message'))
{{ session()->get('message') }}
@endif
Exibindo {{count($categorias)}} registro(s):
@foreach($categorias as $c) @endforeach
Código
Nome
Ações
{{ $c->id }}
{{ $c->nome }}
edit
delete
@endsection