@extends('layouts.admin') @section('style') @endsection @section('content')

{{$page_title}}

@php $i = 0;@endphp @foreach($activity as $p) @php $i++;@endphp @endforeach
Sl No Date Balance Type Balance Charge Balance Details Past Balance Present Balance
{{ $i }} {{ \Carbon\Carbon::parse($p->created_at)->format('d F Y h:i A') }} @if($p->balance_type == 1) Add Fund @elseif($p->balance_type == 2) Deposit @elseif($p->balance_type == 3) Rebeat @elseif($p->balance_type == 4) Withdraw @elseif($p->balance_type == 5) Referral @elseif($p->balance_type == 7) Refund @elseif($p->balance_type == 6) Completed @elseif($p->balance_type == 8) Bank @endif {{ $p->balance }} - {{ $basic->currency }} @if($p->charge == null) Null @else {{ $p->charge }} - {{ $basic->currency }} @endif {{ $p->details }} {{ round($p->old_balance,3) }} - {{ $basic->currency }} {{ round($p->new_balance,3) }} - {{ $basic->currency }}
@endsection @section('scripts') @endsection