@extends('layouts.master') @section('title', 'Gerir Categorias') @section('content')

Gerir Categorias

@if ($categories->count() > 0) @foreach ($categories as $category) @endforeach
Ícone Nome Tipo Criado em Ações
Ícone {{ $category->name }} {{ ucfirst($category->type) }} {{ $category->created_at->format('d/m/Y H:i') }}
{{ $categories->links('vendor.pagination.bootstrap-5') }} @else

Nenhuma categoria cadastrada.

@endif
@endsection