@extends('layouts.master') @section('title') LT-99 :: จัดการเมมเบอร์ @endsection @section('sub_title') รายงานเมมเบอร์ @endsection @section('customStyle') @endsection @section('content')

รายงานเมมเบอร์

@php $i=0; @endphp @foreach ($agents as $agent) @php $memberCount = $agent->members->count(); if($memberCount == 0) continue; @endphp @endforeach
# ชื่อผู้ใช้ ชื่อสกุล จำนวนเมมเบอร์ เครดิตรวม ยอดแทง ส่วนลด สุทธิ ยอดยกเลิก ยอดถูก รวมสุทธิ
{{ ++$i }} {{ $agent->username }} {{ $agent->name }} {{ $memberCount }} {{ nf($agent->sumMember['credit'], 2) }} {{ nf($agent->sumMember['amount'], true) }} -{{ nf($agent->sumMember['discount'], true) }} {{ nf($agent->sumMember['payment'], 2) }} {{ nf($agent->sumMember['cancel'], true) }} {{ nf($agent->sumMember['won'], true) }} {{ nf(($agent->sumMember['payment']-$agent->sumMember['won']), true) }}
@endsection @section('scripts') @endsection