Files
myocardial/app/Http/Controllers/HeartwaveController.php
T
2026-06-23 13:28:38 +07:00

87 lines
1.5 KiB
PHP

<?php
namespace App\Http\Controllers;
use App\Models\Heartwave;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
class HeartwaveController extends Controller
{
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param Request $request
* @return Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param Heartwave $heartwave
* @return Response
*/
public function show(Heartwave $heartwave)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param Heartwave $heartwave
* @return Response
*/
public function edit(Heartwave $heartwave)
{
//
}
/**
* Update the specified resource in storage.
*
* @param Request $request
* @param Heartwave $heartwave
* @return Response
*/
public function update(Request $request, Heartwave $heartwave)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param Heartwave $heartwave
* @return Response
*/
public function destroy(Heartwave $heartwave)
{
//
}
}