This commit is contained in:
2026-04-06 18:44:02 +05:00
commit d775fbb9ba
431 changed files with 31234 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
@extends('layouts.app')
@section('title', 'Бренды')
@php $style = 'brand'; @endphp
@section('content')
<div class="container py-4">
<h2 class="text-center h2 mb-4">Бренды</h2>
<div class="row g-4">
@foreach($brands as $brand)
<div class="col-6 col-md-4 col-lg-3">
<a href="{{ route('brands.show', $brand->slug) }}" class="text-decoration-none">
<div class="card h-100 text-center hover-shadow border-0 shadow-sm">
@if($brand->logo)
<img src="{{ $brand->logo_url }}"
class="card-img-top p-3"
alt="{{ $brand->name }}"
style="height: 120px; object-fit: contain;">
@endif
<div class="card-body">
<h5 class="card-title">{{ $brand->name }}</h5>
<small class="text-muted">{{ $brand->products_count }} товаров</small>
</div>
</div>
</a>
</div>
@endforeach
</div>
{{ $brands->links() }}
</div>
@endsection