@extends('layouts.layout') @section('title', 'All Withdraw Method') @section('content')

@if(Session::has('success'))
Success : {{ Session::get('success') }}
@endif
All Withdraw Method
Add New Method
@php $i=0; @endphp @foreach($method as $curr) @php $i++; @endphp @endforeach
#SL Method Name Rate Action
{{ $i}} {{ $curr->name}} {{ $curr->rate}} USD Edit {!! Form::open(['route'=>['method-destroy',$curr->id],'method'=>'DELETE']) !!} {!! Form::submit('Delete',['class'=>'btn btn-danger pull-right', 'onclick'=>'return confirm("Are You Sure..!");', 'style'=>'margin-top: -35px']) !!} {!! Form::close() !!}
@endsection