@extends('layouts.admin') @section('content')
Total Teacher Taxes

Taxes List

{{-- @if (count($total_teacher_taxes) > 0)
@endif --}}
@php $count=0 @endphp @foreach ($total_teacher_taxes as $tax) @endforeach
Id Teacher Name Course Name tax percentage tax amount net salary from to
{{++$count}} {{$teamCoach->firstWhere('ttid',$tax->courseOffering->ttid)->user->first_name}} {{$teamCoach->firstWhere('ttid',$tax->courseOffering->ttid)->user->middle_name}} {{$teamCoach->firstWhere('ttid',$tax->courseOffering->ttid)->user->last_name}} {{$tax->courseOffering->course->cname.' ( '.$tax->courseOffering->course->level->lshort_name.' )'}} {{$tax->tax_value}} % {{$tax->total_teacher_amount - $tax->net_salary}} EGP {{$tax->net_salary}} EGP {{$tax->from}} {{$tax->to}}
@endsection