@extends('layouts.master') @section('title') {{ 'Page Title Goes Here' }} @endsection @section('contain')
@foreach ($customerData as $user)
@php $rating = $user->rating; @endphp @foreach (range(1, 5) as $i) @if ($rating > 0) @if ($rating > 0.5) @else @endif @endif @php $rating--; @endphp @endforeach
{{ $user->rating }}

{{ $user->full_name }}

{{ $user->user_role }}
{{-- --}}

Email address
{{ $user->email }}
Phone
{{ $user->phone }}
{{--
{{$user->bookings[0]['address']??'N/A'}}
--}}
@endforeach
{{--
First Name

{{ $user->first_name }}

Last Name

{{ $user->last_name }}

--}}
Full Name

{{ $user->full_name ?? '-' }}

Email

{{ $user->email ?? '-' }}

Phone

{{ $user->phone ?? '-' }}

Age

{{ $user->age ?? '-' }}

Social ID

{{ $user->social_id ?? '-' }}

{{--
Provider

{{ $user->provider??"-" }}

--}}
Gender

{{ $user->gender ?? '-' }}

{{--
DOB

{{ $user->dob??"-" }}

--}} {{--
Customer Stripe ID

{{ $user->customer_stripe_id ?? '-' }}

--}} {{--
Latitude

{{ $user->latitude }}

Longitude

{{ $user->longitude }}

--}} {{--
User Status
@if ($user->is_online == 0)

offline

@else

online

@endif
--}}
Biography

{{ $user->biography ?? '-' }}

Ethnicity

{{ $user->ethnicity ?? '-' }}

Language(s)
@php $languages = json_decode($user->language, true); @endphp @if ($languages) @foreach ($languages as $language)

{{ $language??"-" }}

@endforeach @else

{{ $language??"-" }}

@endif
{{--
Name Visibility
Yes
Residency Status

citizen

Marital Status

never married

Height

5.7

Monthly Income Range

147000,500000

Income Visibility
Yes
Disability
Yes
Profession

Accountant

Package

free

Status
Education

PhD

--}} {{--
Interest
  • Shopping
  • Movies
  • Foodie
  • Dramas
  • --}}
    {{--
    --}} {{--
    Media
    Agreement

    Not Available

    Licens

    Not Available

    --}}

    Status not available

    Not Uploaded

    Status not available

    Not Uploaded

    Full Name

    Johnathan Deo

    Mobile

    (123) 456 7890

    Email

    johnathan@admin.com

    Location

    London


    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries

    It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    Skill Set


    Wordpress 80%
    50% Complete
    HTML 5 90%
    50% Complete
    jQuery 50%
    50% Complete
    Photoshop 70%
    50% Complete
    {{--
    --}}
    @foreach ($user->appointment as $appoint) @endforeach
    id Booking Type Job Title Job Type Action
    {{ $appoint->id }} {{ $appoint->booking_type ?? '' }} {{-- {{ $appoint->booking_type ?? '' }} --}} @if ($appoint->parent_id != null)

    Extend

    @endif
    {{ $appoint->job_title ?? '' }} {{ $appoint->job_type ?? '' }}
    {{--
    currency

    {{ $user->wallet->currency }}

    amount

    {{ $user->wallet->amount }}

    --}}
    @foreach ($user->devices as $Cusdevices) @endforeach
    Device Type Device Brand Device os App Version is_notify udid
    {{ $Cusdevices->device_type }} {{ $Cusdevices->device_brand }} {{ $Cusdevices->device_os }} {{ $Cusdevices->app_version }} @if ($Cusdevices->is_notify == 0)

    Pending

    @else

    Notified

    @endif
    {{ $Cusdevices->udid }}
    @endsection