@extends('backend.layout') @section('content')
{{ __('Withdraw Payment Methods') }}
@if (count($collection) == 0)

{{ __('NO Withdraw Payment Methods FOUND') . '!' }}

@else
@foreach ($collection as $item) @endforeach
# {{ __('Name') }} {{ __('Min Limit') }} {{ __('Max Limit') }} {{ __('Manage Form') }} {{ __('Status') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ strlen($item->name) > 30 ? mb_substr($item->name, 0, 30, 'UTF-8') . '...' : $item->name }} {{ $item->min_limit }} {{ $item->max_limit }} Mange Form @if ($item->status == 1)

{{ __('Active') }}

@else

{{ __('Deactive') }}

@endif
{{ __('Edit') }}
@csrf
@endif
{{-- create modal --}} @include('backend.withdraw.create') {{-- edit modal --}} @include('backend.withdraw.edit') @endsection