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

{{ translate('All Sellers') }}

@foreach ($shops as $key => $shop) @if ($shop->user != null)
{{ $shop->name }}
@if ($shop->verification_status == 1) @else @endif

{{ $shop->name }}

{{ renderStarRating($shop->rating) }} ({{ $shop->num_of_reviews }} {{ translate('Reviews') }})
{{ translate('Visit Store') }}
@endif @endforeach
{{ $shops->links() }}
@endsection @section('script') @endsection