@extends('layouts.partials.master') @section('title', 'Catálogo') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Atributos']) {{-- filters - start --}}
{{-- filters - end --}} @include('layouts.components.alerts')
Adicionar @if ($attributes instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif
@include('layouts.components.per-page', ['subject' => $attributes, 'route' => 'prd_attributes'])
@if (count($languages) > 0) @endif @forelse($attributes as $attribute) @if (count($languages) > 0) @endif @empty @endforelse
ID Nome CategoriaTraduçõesAções
{{ $attribute->id }} {{ $attribute->name }} {{ $attribute->category->name }} @include('layouts.components.display-flags', ['context' => $attribute])
@if (!$attribute->trashed()) @else
@csrf
@endif @if (!$attribute->trashed())
@csrf @method('DELETE')
@else
@csrf @method('DELETE')
@endif

{{ __('translations.no_results') }}

@include('layouts.components.pagination', ['subject' => $attributes]) @include('layouts.components.confirmation-modal') @endsection