@include('layouts.head') {{ $business->name }} | Düğün Market
@include('layouts.header')

{{ $business->name }}

@if($business->category) {{ $business->category->name }} @endif @if($business->subcategory) {{ $business->subcategory->name }} @endif @if($business->address) {{ $business->address }} @endif @if($business->phone) {{ $business->phone }} @endif
@if($business->description)

{{ $business->description }}

@endif
  • Ürünler {{ $products->total() }}
  • Salonlar
  • Hizmetler
@if($products->count() > 0)
{{ $products->total() }} ürün listeleniyor
@endif
@forelse($products as $product) @php $coverImage = $product->galleryMedia->where('media_type', 'image')->first(); $coverSrc = $coverImage ? asset('storage/' . $coverImage->file_path) : asset('storage/assets/images/no-image.jpg'); @endphp
{{ $product->name }} @if($product->productCategory) {{ $product->productCategory->name }} @endif

{{ $product->name }}

@if($product->short_description)

{{ Str::limit($product->short_description, 80) }}

@endif
@empty
Henüz ürün eklenmemiş
@endforelse
@if($products->hasPages())
{{ $products->appends(request()->query())->links('pagination::bootstrap-5') }}
@endif
Salon bilgileri yakında eklenecek
Hizmet bilgileri yakında eklenecek
@include('layouts.footer')