@extends($activeTemplate.'layouts.frontend') @section('content')
@if ($admin) vendor @else vendor @endif
@if ($admin) vendor @else vendor @endif

{{ __($admin ? @$general->merchant_profile->name : $merchant->fullname) }}

  • {{ __($admin ? @$general->merchant_profile->address: $merchant->address->address) }}
  • {{ __($admin ? @$general->merchant_profile->mobile : $merchant->mobile) }}
  • @if(!$admin)
  • {{ showAmount($merchant->avg_rating) }} @lang('rating from') {{ $merchant->review_count }} @lang('reviews')
  • @endif

@lang('Project Owner Projects')

@foreach ($products as $product)
auction @lang('x') {{ ($product->total_bid) }} @lang('Bids')
{{ __($product->name) }}
  • @lang('00')
  • @lang('00')
  • @lang('00')
  • @lang('00')
Carbon Credits: {{ showAmount($product->carbon_amount) }}
@endforeach {{ $products->links() }}
@if(!$admin)
@if ($merchant->bids()->where('user_id', auth()->id())->count()) @php $review = $merchant->reviews->where('user_id', auth()->id())->where('merchant_id', $merchant->id)->first(); @endphp
{{ $review ? __('Update Review') : __('Add Review') }}
@csrf
@endif
@endif @endsection