@extends('super_admins.layouts.master') @section('title') Withdraw Requests @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Home Withdraw Requests @php $params = explode('?', request()->getRequestUri()); $params = $params[1] ?? null; @endphp All Withdraw Requests {{-- Export Import Add Gateway --}} Sr. # Name Amount Status Action @php $count = 0; @endphp @foreach ($withdraw_requests as $withdraw_request) {{ $count+1 }} {{ $withdraw_request->user->name }} {{ $withdraw_request->amount }} {{ $withdraw_request->status }} {{-- --}} Warning × This action is irreversible. Are You Sure , You want to delete this Gateway permanently ? @csrf @method('DELETE') Warning × Are You Sure , You want to restore this Gateway ? @csrf @endforeach @endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection
This action is irreversible. Are You Sure , You want to delete this Gateway permanently ?
Are You Sure , You want to restore this Gateway ?