İlk temizlik tamamlandı bir önceki projeden

This commit is contained in:
Ümit Tunç
2026-04-28 21:14:25 +03:00
commit f80443aec0
10000 changed files with 959965 additions and 0 deletions
@@ -0,0 +1,86 @@
<?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)
{
//
}
}