@extends('dashboard.base') @section('content')

Point History of Customer {{ isset($customer->name) ? $customer->name .' / '. $customer->ig_handle : $customer->ig_handle }}

{{--
{{ $customer->getUserWalletPoints() }}
Total Points
{{ abs($customer->getTotalUsedPoints()) }}
Total Used Points
{{ $customer->getTotalGetPoints() }}
Total Get Points
--}}
Total Points:{{ $customer->getUserWalletPoints() ?? "0" }}
Total Used Points:{{ abs($customer->getTotalUsedPoints()) ?? "0" }}
Total Get Points:{{ $customer->getTotalGetPoints() ?? "0" }}
Active VIP Feature : @if($customer->getActivePlanData()) {{ $customer->getActivePlanData->name ?? "-" }} @endif
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
{{$dataTable->table(['class' => 'table table-striped table-bordered dt-responsive', 'style' => 'width:100%;'])}}
@endsection @section('javascript') @push('scripts') {{$dataTable->scripts()}} @endpush @endsection