@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title', ['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb', [ 'breadcrumbs' => [ [ 'name' => __('Dashboard'), 'url' => setRoute('admin.dashboard'), ], ], 'active' => __('Make Payment Logs'), ]) @endsection @section('content') @php $sender_transaction = $transactions; $receiver_transaction = $transactions; $sender_currency = $sender_transaction->details->charges->sender_currency; $receiver_currency = $sender_transaction->details->charges->receiver_currency; @endphp
{{ __("Sender Information") }}
@if ($receiver_transaction)
{{ __("Receiver Information") }}
@endif @endsection @push('script') @endpush