@extends('user.layouts.master') @section('title', __('Referrals')) @section('content')
{{ __('Referrals') }}

{{ __('Referral Activity') }}

{{ __("See who you've referred and statistic of your referrals.") }}

{{-- --}}
{!! Panel::profile_alerts() !!}
{{ __('Referral Commissions') }}
@foreach($transactions as $tranx) @endforeach
{{ __('Details') }} {{ __('Date') }} {{ __('Status') }} {{ __('Earning') }}
{{ $tranx->description }} {{ show_date(data_get($tranx, 'created_at'), true) }} {{ ucfirst(__(tnx_status_switch($tranx->status))) }} {!! ($tranx->completed_at) ? ' show_date($tranx->completed_at, true) ]). '"> ' : '' !!} {{ amount_z($tranx->amount, base_currency(), ['dp' => 'calc']) }}
{!! Panel::referral('invite-card') !!}
{!! Panel::cards('support') !!}
@endsection