@extends('layouts.app') @section('title', 'Categorias - Sistema de Gestão') @section('page-title', 'Categorias') @section('content')

{{ $statistics['total_available'] }}

Disponíveis na Biblioteca

{{ $statistics['imported'] }}

Importadas

{{ $statistics['custom'] }}

Personalizadas

{{ $statistics['import_percentage'] }}%

Cobertura
Suas Categorias {{ $categories->total() }}
@if($categories->count() > 0)
@foreach($categories as $category)
{{ $category->name }}
@if($category->description)

{{ $category->description }}

@endif
{{ $category->type === 'income' ? 'Receita' : 'Despesa' }} {{ $category->usage_count }} usos
@if($category->defaultCategory)
Da Biblioteca
@endif @if($category->keywords)
{{ $category->keywords_string }}
@endif
@endforeach
{{ $categories->links() }}
@else

Nenhuma categoria encontrada

Comece criando uma nova categoria ou importando da biblioteca.

@endif
@endsection