Lae/app/Http/Controllers/Admin/Client/WithdrawController.php

66 lines
1.3 KiB
PHP
Raw Normal View History

2022-08-12 07:56:56 +00:00
<?php
namespace App\Http\Controllers\Admin\Client;
use App\Http\Controllers\Controller;
use App\Models\Client\Withdraw;
use Illuminate\Http\Request;
class WithdrawController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\Client\Withdraw $withdraw
* @return \Illuminate\Http\Response
*/
public function show(Withdraw $withdraw)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param \App\Models\Client\Withdraw $withdraw
* @return \Illuminate\Http\Response
*/
public function update(Request $request, Withdraw $withdraw)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\Client\Withdraw $withdraw
* @return \Illuminate\Http\Response
*/
public function destroy(Withdraw $withdraw)
{
//
}
}