@extends('frontend.layouts.app') @section('contents')

We have {{ count($vendors) }} vendors now

{{--
Show:
50
--}}
@foreach($vendors as $vendor)
{{--
Mall
--}}
Since {{ date('Y', strtotime($vendor?->store?->created_at)) }}

{{ $vendor?->store?->name }}

@php $ratingPercent = $vendor->store?->reviews_avg_rating ? ($vendor->store?->reviews_avg_rating / 5) * 100 : 0; @endphp
({{ round($vendor?->store?->reviews_avg_rating, 2) }})
{{ $vendor->products_count }} products
  • Address: {{ $vendor?->store?->address }}
  • Call Us: {{ $vendor?->store?->phone }}
Visit Store
@endforeach
{{ $vendors->links() }}
@endsection