@forelse($transactions ?? [] as $transaction)
{{ __('Order number') }}: #{{ $transaction->order_id }}

{{ __('Payment method') }}: {{ $transaction->type == 1 ? __('Cash') : __('Visa') }}

{{ __("The company's percentage of the operation") }} ({{ $transaction->store->commission }}%): {{ $transaction->commission }}

{{ $transaction->store_earning }}
@if($transaction->collect_status == 1)

{{ __('Paid') }}

@else

{{ __('Unpaid') }}

@endif
@empty

{{ __('There are no transactions to display.') }}

@endforelse