@extends('layouts.front-end.app') @section('title', translate('order_Details')) @section('content')
@include('web-views.partials._profile-aside')
@include('web-views.users-profile.account-details.partial')
@if($order->seller_is =='seller')
{{$order->seller->shop->name}}
@for($inc=1;$inc<=5;$inc++) @if ($inc <= (int)$avg_rating) @elseif ($avg_rating != 0 && $inc <= (int)$avg_rating + 1.1 && $avg_rating > ((int)$avg_rating)) @else @endif @endfor
  • {{ $rating_count }} {{('reviews')}}
@else
{{$web_config['company_name']}}
@for($inc=1;$inc<=5;$inc++) @if ($inc <= (int)$avg_rating) @elseif ($avg_rating != 0 && $inc <= (int)$avg_rating + 1.1 && $avg_rating > ((int)$avg_rating)) @else @endif @endfor
  • {{$rating_count}} {{('reviews')}}
@endif
@include('layouts.front-end.partials.modal._chatting',['seller'=>$order->seller, 'user_type'=>$order->seller_is]) @endsection