@extends('admin.layouts.master')
@section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif
@if(session()->has('error'))
{{ session()->get('error') }}
@endif
| Patient Id |
Patient Name |
Commission |
Currency |
Date |
Status |
@foreach($commissions_details as $key=>$row)
| {{$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}} |
@endforeach
@endsection