Team Details
@foreach ($team?->labours as $key => $item)
{{ $item->labour?->name }}
({{ config('archive.labour_trade_type')[$item->labour_trade_type] }})
@if ($item->labour_trade_type != 0)
@endif
@include('helper.formhelper.showlabel', [
'name' => 'EMPLOYEE ID',
'value' => $item->labour?->employee_id,
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@include('helper.formhelper.showlabel', [
'name' => 'EMAIL',
'value' => $item->labour?->email,
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@include('helper.formhelper.showlabel', [
'name' => 'MOBILE',
'value' => $item->labour?->mobile,
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@include('helper.formhelper.showlabel', [
'name' => 'GENDER',
'value' => config('archive.gender')[$item->labour?->gender],
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@include('helper.formhelper.showlabel', [
'name' => 'SKILLS',
'value' => $item->labour?->skills,
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@include('helper.formhelper.showlabel', [
'name' => 'TRADE',
'value' => $item->labour?->trade,
'columnone' => 'col-md-6',
'columntwo' => 'col-5',
'columnthree' => 'col-7',
])
@endforeach
Payroll Details
{{ $team->name }}
Total Money Earned
{{ $teampayinfo['total_team_earnings'] }}
{{ $teampayinfo['tpayroll_month'] }}
@if (isset($teaminvoiceurl['data']['teaminvoice']))
Wallet
Report
@endif
Team Earnings of Today -
{{ $teampayinfo['perday_earnings'] }}
Team Balance Upto Date -
{{ $teampayinfo['team_earnings_perday'] }}
@include('helper.tablehelper.tableheader', [
'name' => 'Activity',
'type' => 'normal',
'sortname' => '',
])
@include('helper.tablehelper.tableheader', [
'name' => 'Amount',
'type' => 'normal',
'sortname' => '',
])
@include('helper.tablehelper.tableheader', [
'name' => 'Quantity',
'type' => 'normal',
'sortname' => '',
])
@include('helper.tablehelper.tableheader', [
'name' => 'Price Per Unit',
'type' => 'normal',
'sortname' => '',
])
@if (count($walletinfo) > 0)
@foreach ($walletinfo as $value)
{{ $value->activity_setup?->activity }} |
{{ ($value->pay ? intval($value->pay) : 0) . ' ' . env('CURRANCY_SYSMBOL') }}
|
{{ $value->activity_setup?->quantity
? number_format($value->activity_setup?->quantity, 2) .
' ' .
($value->activity_setup?->uom ? $value->activity_setup?->uom : '')
: '' }}
|
{{ ($value->activity_setup?->price_per_unit ? $value->activity_setup?->price_per_unit : '') .
' ' .
env('CURRANCY_SYSMBOL') }}
|
@endforeach
@else
No Data Found
|
@endif