@extends('layout.admin_layout')
@section('title', 'Manage Commission')
@section('body')
@section('header', "
List of Doctor's Earnings")
@section('badge')
Earning
@endsection
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
| No |
Doctor Name |
Available Balance |
Total Earning |
@foreach($data as $key=>$value)
|
{{$key+1}}
|
Dr. {{$value->last_name}} |
@if($value->avl_bal == '')
$ 0 |
@else
$ {{$value->avl_bal}} |
@endif
$ {{total_earning($value->id)}} |
@endforeach
@endsection
@push('scripts')
@endpush