@extends('layouts.admin.app') @section('title', __('trans.teacher.wallet_trans.title')) @section('content')

{{ __('trans.teacher.wallet_trans.title') }}

@php $extra = [ [ 'targets' => 2, 'createdCell' => 'function (td) { $(td).css("direction", "ltr").css("text-align", "start"); }' ], [ 'targets' => 4, 'render' => 'function(data){ return data == \'credit\' ? \'' . __('trans.teacher.wallet_trans.credit') . '\' : \'' . __('trans.teacher.wallet_trans.debit') . '\'; }', ], [ 'targets' => 5, 'render' => 'function(data){ let badges = { \'pending\': \'' . __('trans.pending') . '\', \'completed\': \'' . __('trans.completed') . '\', \'cancelled\': \'' . __('trans.cancelled') . '\' }; return badges[data] || data; }', ], ]; $actions = [ ['type' => 'custom', 'html' => '
  • ' . __('trans.teacher.wallet_trans.view_details') . '
  • '], ]; @endphp
    @endsection