@extends('template.coin.layouts.base') @section('title', __('Fund History')) @section('css') @endsection @section('content')
Transactions

Transactions

List of transactions in your account.

{{get_txn_title($type)}}
@if(!blank($trans)) @if($type == 'deposit') @foreach($trans as $tran) @include('template.coin.user.funds.trans-deposit') @endforeach @elseif($type == 'withdraw') @include('template.coin.user.funds.trans-withdraw') @else @include('template.coin.user.funds.trans-row') @endif @else none @endif
@endsection @section('modals') @endsection @section('js') @endsection