@extends('admin.layouts.master') @section('content')

{{$therapist ? $therapist->first_name.' '.$therapist->last_name : ""}}

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@foreach($commissions_details as $key=>$row) @endforeach
Patient Id Patient Name Commission Currency Date Status
{{$row->patient_user_id}} {{$row->patient_user_id > 0 ? $row->patient->first_name.' '. $row->patient->last_name : "None - Manual Change" }} {{$row->commission}} {{$row->currency}} {{$row->created_at}} {{$row->status}}
@endsection