@extends('frontend.layouts.app') @section('content')
{{$seller->sellerShop->shop_first_image}}

{{$seller->sellerShop->name}}

{{translate("Joined")}} : {{diff_for_humans($seller->created_at)}}
@php echo show_ratings($seller->rating ?? 0) @endphp
{{$seller->rating ?? 0}}/5

{{$seller->sellerShop->short_details}}

{{translate("Total Products")}}

{{$seller->product->where('status', 1)->count()}}

{{translate("Total Followers")}}

{{$seller->follow->count()}}

{{translate("All Products")}}

@include('frontend.partials.product', ['products' => $products])
{{$products->withQueryString()->links()}}
@forelse ($digital_products as $product)
{{$product->featured_image}}

{{$product->name}}

@php $price = $product->digitalProductAttribute ? @$product->digitalProductAttribute->where('status','1')->first()?->price : 0; $taxes = getTaxes(@$product,$price); $price = $price + $taxes; @endphp {{short_amount($price)}}
{{translate("Top up")}}
@empty
@include("frontend.partials.empty",['message' => 'No Data Found'])
@endforelse
{{$digital_products->withQueryString()->links()}}

{{translate("Related Shops")}}

@endsection