api code global jain

This commit is contained in:
Abhishek Mali
2025-11-05 10:37:10 +05:30
commit 52fe7e2bec
2834 changed files with 1784903 additions and 0 deletions

View File

@@ -0,0 +1,86 @@
<?php
namespace App\Http\Controllers;
use App\Models\Thana;
use App\Http\Requests\StoreThanaRequest;
use App\Http\Requests\UpdateThanaRequest;
class ThanaController 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\StoreThanaRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreThanaRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\Thana $thana
* @return \Illuminate\Http\Response
*/
public function show(Thana $thana)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\Thana $thana
* @return \Illuminate\Http\Response
*/
public function edit(Thana $thana)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateThanaRequest $request
* @param \App\Models\Thana $thana
* @return \Illuminate\Http\Response
*/
public function update(UpdateThanaRequest $request, Thana $thana)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\Thana $thana
* @return \Illuminate\Http\Response
*/
public function destroy(Thana $thana)
{
//
}
}