87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Http\Requests\StoreDeletedJointRequest;
|
|
use App\Http\Requests\UpdateDeletedJointRequest;
|
|
use App\Models\DeletedJoint;
|
|
|
|
class DeletedJointController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function create()
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\StoreDeletedJointRequest $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreDeletedJointRequest $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\DeletedJoint $deletedJoint
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(DeletedJoint $deletedJoint)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\DeletedJoint $deletedJoint
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(DeletedJoint $deletedJoint)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\UpdateDeletedJointRequest $request
|
|
* @param \App\Models\DeletedJoint $deletedJoint
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateDeletedJointRequest $request, DeletedJoint $deletedJoint)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\DeletedJoint $deletedJoint
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(DeletedJoint $deletedJoint)
|
|
{
|
|
//
|
|
}
|
|
}
|