@extends('layouts.app') @section('content')
{{ $start . ' to ' . $end }}
{{ __('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') }} |