@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Nova categoria da Carta')) @section('content') @include('errors.messageFlash')
@php $headLine = " " . __('Nova categoria da Carta'); @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.cartaServicos.index', 'routeBackParams' => request()->only(['q', 'tipo_id', 'page']), 'nameBack' => __('Voltar'), ]) {{-- Google Fonts --}}
{{-- ── 1. Nova categoria ──────────────────────────────── --}}
@csrf

{{-- ── 2. Categorias cadastradas ───────────────────────── --}}
@forelse($tipos as $tipo) @if($loop->first)
@endif
@csrf @method('put') @if(\Illuminate\Support\Str::startsWith((string) $tipo->tip_class, 'storage/')) {{ $tipo->tip_descricao }} @endif
@csrf @method('delete')
@if($loop->last)
@endif @empty
{{ __('Nenhuma categoria cadastrada.') }}
@endforelse
{{-- ── Footer ─────────────────────────────────────────── --}}
@endsection