@extends('panel.layout.app')
@section('title', __('Affiliated Users'))
@section('titlebar_actions', '')
@section('content')
{{ __('Users') }}
{{ __('Full Name') }}
|
{{ __('Amount') }}
|
{{ __('Status') }}
|
{{ __('Date') }}
|
@forelse ($list as $entry)
{{ $entry->name . ' ' . $entry->surname }}
|
{{ $entry->amount }}
|
{{ $entry->status }}
|
{{ $entry->created_at }}
|
@empty
{{ __('You have no affiliate users') }}
|
@endforelse
@endsection
@push('script')
@endpush