@extends('new_app.header') @section('content')
@php $total_bonus = $trans->sum('credit'); @endphp

🚀 कुल बोनस 🚀

आपने अभी तक कुल इतना बोनस प्राप्त किया है:

₹{{ $total_bonus }}
@forelse ($trans as $index => $tran) @empty @endforelse
क्रम_संख्या क्रेडिट लेन-देनमोड टिप्पणी तारीख
{{ $index + 1 }} ₹ {{ $tran->credit }} {{ ucfirst($tran->transaction_mode) }} {{ $tran->comment }} {{ \Carbon\Carbon::parse($tran->date)->format('d-m-Y') }}
No Transactions Found
@endsection