@extends('layouts.admin') @section('title') @lang('Withdraw Methods') @endsection @section('breadcrumb')

@lang('Withdraw Methods')

@if (access('withdraw method create')) @lang('Add new Method') @endif
@endsection @section('content')
@forelse ($withdraws as $key => $withdraw) @if (access('withdraw method edit')) @else @lang('N/A') @endif @empty @endforelse
@lang('Sl') @lang('Name') @lang('status') @lang('Action')
{{$key + $withdraws->firstItem() }} {{ $withdraw->name }} @if ($withdraw->status)
@lang('Active')
@else
@lang('Inactive')
@endif
@lang('No Data Found')
@if ($withdraws->hasPages()) @endif
@endsection