@extends('layouts.user') @section('content') @if(auth()->check() && auth()->user()->id == $user->id) {{ __('تنظیمات حمایت مالی') }} @endif
@include('user.partials.top')

@if($isEn) {{ $user->display_name }}'s {{ __('Supporters') }} @else {{ __('لیست حامیان') }} {{ $user->display_name }} @endif

@if(count($payments) > 0) @foreach($payments as $key => $payment)
{{ $payment->sender }}
{{ $isEn ? custom_money_format($payment->amount) : latin_number_to_persian(custom_money_format($payment->amount)) }} {{ $payment->display_currency }}
@endforeach @else
هنوز هیچ حمایتی انجام نشده ☹️
{{ __('اولین نفر باش!') }} @endif
@endsection