@extends("front.layout.master") @section('title', "Artist Profile Page ") @section("body")
{{$user->name}}
{{$state->name}} , {{ $country->name}}
@if($user->image !="") @if(file_exists(public_path().'/images/user/'.$user->image)) User Image @else User Image @endif @else @endif
{{ $user->followers()->get()->count() }} @if($user->followers()->get()->count()==0) {{ __('staticwords.Follower') }} @elseif($user->followers()->get()->count()==1) {{ __('staticwords.Follower') }} @else {{ __('staticwords.Followers') }} @endif
@auth @if(auth()->user()->isFollowing($user)) {{ __('staticwords.UnFollow') }} @else {{ __('staticwords.Follow') }} @endif @else
@if($user->store->aboutme)
  • {{ __('staticwords.about') }} {{ __('staticwords.artist') }}
    {!! html_entity_decode(substr(nl2br($user->store->aboutme), 0,1000)) !!} @if (strlen($user->store->aboutme) > 1000) ... {!! html_entity_decode(substr(nl2br($user->store->aboutme), 1000)) !!} {{ __('staticwords.readmore') }} @endif
  • @if($user->store->awards)
  • {{ __('staticwords.AwardsandRecognations') }}
    {!! html_entity_decode(substr(nl2br($user->store->awards), 0, 1000)) !!} @if (strlen($user->store->awards) > 1000) ... {!! html_entity_decode(substr(nl2br($user->store->awards), 1000)) !!} {{ __('staticwords.readmore') }} @endif
  • @endif @if($user->store->art_info)
  • {{ __('staticwords.OtherArtGalleriesOrPlatformsAssociatedWith') }}
    {!! substr(nl2br($user->store->art_info), 0, 1000) !!} @if(strlen(strip_tags($user->store->art_info)) > 1000) ... {!! substr(nl2br($user->store->art_info), 1000) !!} {{ __('staticwords.readmore') }} @endif
  • @endif
@endif @if($user->store->aboutme)
  • {{ __('staticwords.about') }} {{ __('staticwords.artist') }}
    {!! html_entity_decode(substr(nl2br($user->store->aboutme), 0,1000)) !!} @if (strlen($user->store->aboutme) > 1000) ... {!! html_entity_decode(substr(nl2br($user->store->aboutme), 1000)) !!} {{ __('staticwords.readmore') }} @endif
  • @if($user->store->awards)
  • {{ __('staticwords.AwardsandRecognations') }}
    {!! html_entity_decode(substr(nl2br($user->store->awards), 0, 1000)) !!} @if (strlen($user->store->awards) > 1000) ... {!! html_entity_decode(substr(nl2br($user->store->awards), 1000)) !!} {{ __('staticwords.readmore') }} @endif
  • @endif @if($user->store->art_info)
  • {{ __('staticwords.OtherArtGalleriesOrPlatformsAssociatedWith') }}
    {!! substr(nl2br($user->store->art_info), 0, 1000) !!} @if(strlen(strip_tags($user->store->art_info)) > 1000) ... {!! substr(nl2br($user->store->art_info), 1000) !!} {{ __('staticwords.readmore') }} @endif
  • @endif
@endif

@php $page='artistprofile'; $uid=$user->id; @endphp
@endsection @section('script') @endsection