@extends('user.layouts.app') @section('title') @lang('Dashboard') @endsection @section('content')
@lang('Referral Link')
@if(0 < count($referrals))
@foreach($referrals as $key => $referral)
@if( 0 < count($referral))
@foreach($referral as $user) @endforeach
@lang('Name') @lang('Email') @lang('Phone Number') @lang('Joined At')
{{$user->username}} {{$user->email}} {{$user->mobile}} {{dateTime($user->created_at)}}
@endif
@endforeach
@endif
@endsection @push('js') @endpush