87 lines
2.0 KiB
PHP
87 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\DocumentRevision;
|
|
use App\Http\Requests\StoreDocumentRevisionRequest;
|
|
use App\Http\Requests\UpdateDocumentRevisionRequest;
|
|
|
|
class DocumentRevisionController 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\StoreDocumentRevisionRequest $request
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function store(StoreDocumentRevisionRequest $request)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \App\Models\DocumentRevision $documentRevision
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(DocumentRevision $documentRevision)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*
|
|
* @param \App\Models\DocumentRevision $documentRevision
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function edit(DocumentRevision $documentRevision)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param \App\Http\Requests\UpdateDocumentRevisionRequest $request
|
|
* @param \App\Models\DocumentRevision $documentRevision
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function update(UpdateDocumentRevisionRequest $request, DocumentRevision $documentRevision)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param \App\Models\DocumentRevision $documentRevision
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function destroy(DocumentRevision $documentRevision)
|
|
{
|
|
//
|
|
}
|
|
}
|