@extends('layouts.app') @section('content')
{{ __('User payment report') }}

{{ $start . ' to ' . $end }}

@foreach($reports as $report) @endforeach
{{ __('Name') }} {{ __('Payment method') }} {{ __('Date') }} {{ __('Amount') }}
{{ $report->user->name }} {{ $report->payment_method }} {{ date('Y-m-d', strtotime($report->created_at->tz(auth()->user()->timezone) )) }} {{ auth()->user()->currency . $report->amount }}
{{ __('Total') }} {{ auth()->user()->currency . $reports->sum('amount') }}
@endsection