@extends('backend.partials.master') @section('title') {{ __('merchant.payment_accounts') }} {{ __('levels.list') }} @endsection @section('maincontent')

{{ __('merchant.payment_accounts') }}

@php $i=1; @endphp @foreach($accounts as $account) @endforeach
{{ __('levels.id') }} {{ __('merchant.payment_method') }} {{ __('merchant.account_info') }} {{ __('levels.actions') }}
{{$i++}}
{{__('merchant.'.$account->payment_method)}}

{{$account->bank_name}}

{{$account->holder_name}}

{{$account->account_no}}

{{$account->branch_name}}

{{$account->routing_no}}

{{$account->mobile_company}}

{{$account->mobile_no}}

{{$account->account_type}}

@if ($account->payment_method == \App\Enums\Merchant_panel\PaymentMethod::cash)

{{__('merchant.'.$account->payment_method)}}

@endif
{{ $accounts->links() }}

{!! __('Showing') !!} {{ $accounts->firstItem() }} {!! __('to') !!} {{ $accounts->lastItem() }} {!! __('of') !!} {{ $accounts->total() }} {!! __('results') !!}

@endsection()