@extends('backend.layouts_backend.master2') @section('title') Client Details @endsection @section('content') {{-- header --}}

Client Details

{{-- end header --}}
{{-- client bio data --}}
  • Client Image :
    preview
  • Client code : {{ $client->client_code ?? '' }}
  • Registered : {{ short_date($client->created_at) ?? '' }}
  • First Name : {{ $client->first_name ?? '' }}
  • Last Name : {{ $client->last_name ?? '' }}
  • Other Names : {{ $client->other_names ?? '' }}
  • Age : {{ $client->age ?? '' }}
  • Email : {{ $client->email ?? '' }}
  • Profession : {{ $client->profession ?? '' }}
  • Phone : {{ $client->phone ?? '' }}
  • Organization : {{ $client->organization ?? '' }}
  • Country : {{ get_country_name($client->country_id) ?? '' }}
  • Address : {{ $client->address ?? '' }}
  • Status : {{ get_status_message($client->client_status) ?? '' }}
  • Website : {{ $client->website ?? '' }}
  • Created By : {{ get_user_fullname_temporary($client->created_by) ?? '' }}
  • Updated By : {{ get_user_fullname_temporary($client->updated_by) ?? '' }}
  • Description : {{ $client->description ?? '' }}
{{-- client related records --}}
{{--
@php $client_bookings = $client->studio_bookings()->get(); $count_client_bookings = !empty($client_bookings) ? count($client_bookings) : 0; @endphp

@if (!empty($client_bookings)) @foreach ($client_bookings as $booking) @endforeach @endif
#Id Product/Package Client Booked On Total to Pay Paid Balance Status Action
{{ $booking->id ?? '' }} {{ $booking->product->product_name ?? '' }} {{ $booking->client->first_name ?? '' }} {{ $booking->client->last_name ?? '' }} {{ $booking->client->other_names ?? '' }} {{ short_date($booking->booking_date) ?? '' }} {{ $booking->total_amount_to_pay ?? '' }} {{ $booking->amount_paid ?? '' }} {{ $booking->balance ?? '' }} {!! get_booking_status($booking->booking_status) !!}
@csrf @method('DELETE')

accordion 2

--}} {{-- end of client related records --}}
@endsection