@extends('admin.layout') @section('title', 'Marcas - Admin IMOZA') @section('header', 'Marcas') @section('content')

{{ $brands->total() }} marcas

@forelse($brands as $brand)

{{ $brand->name }}

{{ $brand->products_count }} productos

{{ $brand->description ?: 'Sin descripción' }}

@csrf @method('DELETE')
@empty

No hay marcas creadas.

@endforelse
{{ $brands->links() }}
@endsection