@extends('layout.app') @section('title', __('Transections')) @section('content')
{{ __('Transections') }}
@foreach ($transections as $transection) @endforeach
{{ __('sl') }} {{ __('name') }} {{ __('payment_method') }} {{ __('transection_type') }} {{ __('amount') }} {{ __('purpose') }} {{ __('date') }}
{{ $loop->iteration }} {{ $transection->user->name }} {{ $transection->payment_method }} {{ $transection->transection_type->value }} {!! numberFormat($transection->amount) !!} {{ $transection->purpose ?? 'N/A' }} {{ dateFormat($transection->date) }}
@endsection