@extends('front.layout') @section('pagename') - {{ __('Listings') }} @endsection @section('meta-description', !empty($seo) ? $seo->profiles_meta_description : '') @section('meta-keywords', !empty($seo) ? $seo->profiles_meta_keywords : '') @section('breadcrumb-title') {{ __('Listings') }} @endsection @section('breadcrumb-link') {{ __('Listings') }} @endsection @section('content')
@foreach ($users as $user)
@if (isset($user->photo)) User @else User @endif

{{ $user->company_name }}

status == 0) title="Account deactivated" @endif target="_blank" href=" @if ($user->status == 1) {{ detailsUrl($user) }} @else # @endif" class="btn btn-sm btn-outline @if ($user->status == 0) cursor-not-allowed @endif"> {{ __('Website') }} @guest {{ __('Follow') }} @endguest @if (Auth::check() && Auth::id() != $user->id) @if (App\Models\User\Follower::where('follower_id', Auth::id())->where('following_id', $user->id)->count() > 0) {{ __('Unfollow') }} @else {{ __('Follow') }} @endif @endif
@endforeach
@endsection