@extends('layouts.admin') @section('title', 'Admin Profile') @push('vendor-styles') @endpush @push('page-styles') @endpush @section('body')

Provider Profile




{{-- ----- tab ----- --}}
@if (!empty($order_detail)) @foreach ($order_detail as $key => $orders) @if ($orders->status == 1) @elseif($orders->status == 2) @elseif($orders->status == 3) @elseif($orders->status == 4) @endif() @endforeach() @endif()
S.No Order Id Order Date Status Action
{{ ++$key }} {{ $orders->order_id }} {{ $orders->date }}PendingAcceptedCompletedCanceledSee Detail

Basic Information

@csrf
{{-- ****************** Provider Detail ***************************** --}}

Provider Detail

@csrf
{{-- Portfolio Imnages --}}
Portfolio Images :
@foreach ($customer->portfolioImages as $image)
@endforeach
{{-- License Images --}}
License Images :
@foreach ($customer->providerLicenseImages as $image)
@endforeach
{{-- Provider Insurance Images --}}
Insurance Information Image :
@foreach ($customer->insuranceInformationImages as $image)
@endforeach
{{--
--}}
{{-- ****************** Bank Accounts ***************************** --}}
{{-- --}} @foreach ($bankAccounts as $account) {{-- --}} @endforeach
Bank Name Routing # Account # Is Default StatusAction
{{ $account->bank_name }} {{ $account->routing_number }} {{ $account->account_number }} @if ($account->account_id == $account->provider->provider_account_id)
Yes
@else
No
@endif
@php $stripe = new \Stripe\StripeClient(config('stripe.LIVE_MODE') ? config('stripe.LIVE_SECRET_KEY') : config('stripe.TEST_SECRET_KEY')); $account = $stripe->accounts->retrieve( $account->account_id, [] ) @endphp @if ($account->payouts_enabled)
Completed
@else
Restricted
@endif
See Detail

User Property

@if ($customer->address)

{{ isset($customer->address) ? $customer->address : '' }}

@endif()

{{ $provider->first_name . ' ' . $provider->last_name }}

averageQualityRatings) == 1 ? 'checked' : '' }} /> averageQualityRatings) == 2 ? 'checked' : '' }} /> averageQualityRatings) == 3 ? 'checked' : '' }} /> averageQualityRatings) == 4 ? 'checked' : '' }} /> averageQualityRatings) == 5 ? 'checked' : '' }} />
{{ $provider->averageQualityRatings }} ({{ $provider->totalReviews }} Reviews)
Level: {{ getProviderLevel($provider->id) }}

{{ $provider->address }}

Total score

{{ $totalScore }}%

Response on time
Cancel Jobs

Completed jobs
Rating
@if ($type == 'proposals') @endif

Reviews ({{ $provider->ratings->count() }})

@endsection @push('vendor-scripts') @endpush @push('page-scripts') @endpush