dashboard-admin/app/Http/Controllers/RefundController.php
2023-08-21 10:34:48 +07:00

67 lines
1.1 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Refund;
use App\Http\Requests\StoreRefundRequest;
use App\Http\Requests\UpdateRefundRequest;
class RefundController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreRefundRequest $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Refund $refund)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Refund $refund)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateRefundRequest $request, Refund $refund)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Refund $refund)
{
//
}
}