@extends('backend.layouts.main') @section('title') {{ __('Withdrawal methods') }} @endsection @section('content')
{{ __('Create withdrawal method') }}
@if($withdrawal_methods->isEmpty()) @else @foreach ($withdrawal_methods as $withdrawal_method) @endforeach
{{ __('ID') }} {{ __('Code') }} {{ __('Name') }} {{ __('Gateway') }} {{ __('Status') }}
{{ $withdrawal_method->id }} {{ $withdrawal_method->code }} {{ $withdrawal_method->name }} {{ $withdrawal_method->gateway->name ?? '' }} {{ $withdrawal_method->status_title }}
@endif @endsection