/home/kueuepay/public_html/resources/views/user/sections/transaction/index.blade.php
@extends('user.layouts.master')

@push('css')
    
@endpush

@section('breadcrumb')
    @include('user.components.breadcrumb',['breadcrumbs' => [
        [
            'name'  => __("Dashboard"),
            'url'   => setRoute("user.dashboard"),
        ]
    ], 'active' => __($page_title)])
@endsection

@section('content')
<div class="body-wrapper">
    <div class="dashboard-list-area mt-20">
        <div class="dashboard-header-wrapper">
            <h4 class="title">{{ __($page_title) }}</h4>
        </div>
        <div class="dashboard-list-wrapper">
            @include('user.components.transaction.index',[
                'data'  => $transactions
            ])
            
        </div>
    </div>
</div>
@endsection
@push('script')
<script>
    itemSearch($("input[name=search_text]"),$(".transaction-results"),"{{ setRoute('user.transaction.log.search') }}",1);
</script>
@endpush
Error Handling

Error Handling

In case of an error, the API will return an error response containing a specific error code 400, 403 Failed and a user-friendly message. Refer to our API documentation for a comprehensive list of error codes and their descriptions.