@forelse($transactions ?? [] as $transaction)
{{ __('Payment method') }}: {{ $transaction->type == 1 ? __('Cash') : __('Visa') }}
{{ __("The company's percentage of the operation") }} ({{ $transaction->store->commission }}%): {{ $transaction->commission }}
{{ __('Paid') }}
@else{{ __('Unpaid') }}
@endif