@extends('admin.layout') @section('content')
{{ __('Payment Methods') }}
@if (count($paymentMethods) == 0)

{{ __('NO PAYMENT METHOD FOUND') . '!' }}

@else
@foreach ($paymentMethods as $method) @if ($method->status == 0) @else @endif @endforeach
{{ __('Name') }} {{ __('Min Limit') }} {{ __('Max Limit') }} {{ __('Manage Form') }} {{ __('Status') }} {{ __('Actions') }}
{{ $method->name }} {{ symbolPrice($method->min_limit) }} {{ symbolPrice($method->max_limit) }} {{ __('Mange Form') }} {{ __('Deactive') }} {{ __('Active') }}
@csrf
@endif @includeif('admin.withdraw.create') @includeif('admin.withdraw.edit')
@endsection @section('script') @endsection