@extends('includes.layout') @section('content')
@if (session()->has('success'))
{{ session()->get('success') }}
@endif
Edogaru edogaru@mail.com.my
Personal Details
@csrf
@if ($errors->has('name')) @endif
@if ($errors->has('phone')) @endif
@if ($errors->has('bio')) @endif
@foreach ($latestServices as $key => $latestService) @endforeach
Upload Photos
@foreach ($saloon_photos as $saloon_photo)
alt
@endforeach
Add Services
@csrf
@foreach ($userservices as $key => $userservice) @endforeach
Sr. No. Service Sub Services Gender Duration Price Edit/Delete
{{ $key + 1 }} {{ $userservice->services->name }} {{ $userservice->subservices->name ?? '' }} {{ $userservice->gender }} {{ $userservice->duration }} {{ $userservice->price }}
@foreach ($favorites as $key => $favorite)
@if ($favorite->favService->profile_photo_path) ... @else ... @endif

20

YEARS

EXPERIENCE

@endforeach
Booking
@if (!empty($bookinglist)) @foreach ($bookinglist as $key => $bookings) @endforeach @else Data Not Found @endif
Sr. No. Service Discount Total Price Booking Date Scheduled Username Phone Transaction Id Action
{{ $key + 1 }} @php $i = 1 @endphp @foreach ($bookings->BookedServices as $key => $service) {{ $i++ }} . {{ $service->Service->name }} ({{ $service->service_id }})
@endforeach
₹ {{ $bookings->discount }} ₹ {{ $bookings->total_price }} {{ $bookings->created_at }} {{ $bookings->scheduled_date }} {{ $bookings->user->name }} {{ $bookings->user->phone }} {{-- {{ $bookings->salon->name }} ({{ $bookings->saloon_id }}) --}} {{ $bookings->transaction_id }}
Earning

3000

Service Payment Date/Time Payment Mode Status
1 -- -- -- --
@endsection